Python 3.5.2 |Anaconda custom (64-bit)| (default, Jul 2 2016, 17:53:06)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from cvxopt import matrix
>>> 2 * matrix(1.0, (1, 4))
Intel MKL FATAL ERROR: Cannot load libmkl_avx.so or libmkl_def.so
When running the above scripts I get an Intel MKL Fatal Error. The test that is mentioned in issues with similar error passed. The test is
python -c 'import sklearn.linear_model.tests.test_randomized_l1'
I ran python with LD_DEBUG=symbols
and see the below error in the logs
/opt/anaconda3/lib/python3.5/site-packages/cvxopt/../../../libmkl_avx.so: error: symbol lookup error: undefined symbol: mkl_sparse_optimize_bsr_trsm_i8 (fatal)
Does anyone know how to fix this? I am interested in retaining the mkl option and not the nomkl one
NOTE mkl
is installed and at newest version and so is scikit-learn