You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Problems.md 1.3 kB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
12345678910111213141516171819202122232425262728
  1. # About graph kenrels.
  2. ## (Random walk) Sylvester equation kernel.
  3. ### ImportError: cannot import name 'frange' from 'matplotlib.mlab'
  4. You are using an outdated `control` with a recent `matplotlib`. `mlab.frange` was removed in `matplotlib-3.1.0`, and `control` removed the call in `control-0.8.2`.
  5. Update your `control` package.
  6. ### Intel MKL FATAL ERROR: Cannot load libmkl_avx2.so or libmkl_def.so.
  7. The Intel Math Kernel Library (MKL) is missing or not properly set. I assume MKL is required by the `control` module.
  8. Install MKL. Then add the following to your path:
  9. ```
  10. export PATH=/opt/intel/bin:$PATH
  11. export LD_LIBRARY_PATH=/opt/intel/lib/intel64:/opt/intel/mkl/lib/intel64:$LD_LIBRARY_PATH
  12. export LD_PRELOAD=/opt/intel/mkl/lib/intel64/libmkl_def.so:/opt/intel/mkl/lib/intel64/libmkl_avx2.so:/opt/intel/mkl/lib/intel64/libmkl_core.so:/opt/intel/mkl/lib/intel64/libmkl_intel_lp64.so:/opt/intel/mkl/lib/intel64/libmkl_intel_thread.so:/opt/intel/lib/intel64_lin/libiomp5.so
  13. ```
  14. ### Module `slycot` install error.
  15. A fortran compiler (e.g., `gfortran`) and BLAS/LAPACK (e.g. `liblapack-dev`) needs to be pre-installed. Try to include them in the library or remove these dependences. See [slycot's file](https://github.com/python-control/Slycot/blob/master/.travis.yml) for detail.

A Python package for graph kernels, graph edit distances and graph pre-image problem.