OSQP w/MKL Pardiso Solver #578
Unanswered
erikrforseth
asked this question in
Python Interface
Replies: 1 comment 1 reply
-
I seem to have been able to resolve this by using pip to install an older version of the MKL libraries... I tried mkl==2019.0 and now my code runs without errors. So perhaps there is some incompatibility or extra configuration needed to run OSQP with the latest MKL versions on Mac. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm running Python3.9 on Mac Ventura 13.4.1, 3.6 GHz Quad-Core Intel Core i7.
I have a large sparse linear program which I'm able to solve via OSQP using the QDLDL solver. I understand the MKL Pardiso solver may be more appropriate for my problem, but I get an error when I try to use this solver. I've installed MKL via pip and also via the standard installer -- for which I also ran
In any case, when I try to run my code, I get the following error
"Intel MKL FATAL ERROR: Cannot load libmkl_intel_thread.2.dylib."
I get the same issue when I try running in Python 3.8, 3.7, etc. I sort of assume there's some issue with the way MKL has been installed or configured, but I'm not sure how to debug it.
Beta Was this translation helpful? Give feedback.
All reactions