-
Notifications
You must be signed in to change notification settings - Fork 744
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some MKL methods skipped in javacpp-presets #1326
Comments
They are missing from MKL. Please ask Intel about that.
|
Is this only missing in the C++ API? I have been calling it with no problems from the C api for years. |
It's missing from mkl_rt, the recommended way to use MKL: https://www.intel.com/content/www/us/en/develop/documentation/onemkl-windows-developer-guide/top/linking-your-application-with-onemkl/linking-quick-start/using-the-single-dynamic-library.html |
Now I'm confused, because in C, I put #include "mkl.h", then link to mkl_rt, and it works (MKL 2022.2, MKL from 2017 etc.) Now, you probably know this better than I do, and I have a workaround for that particular function. |
Well, I've removed them from the skip list in commit dabd151 and the builds are not failing, so I guess they must have fixed that at some point. |
Thank you. |
I wanted to use cblas_saxpby and cblas_daxpby, but they are unavailable in JavaCPP's MKL presets.
I found out that they are explicitly excluded, by the following line:
javacpp-presets/mkl/src/main/java/org/bytedeco/mkl/presets/mkl_rt.java
Line 134 in a036172
Is this intentional, or just for compatibility with other BLAS/LAPACK implementations such as openblas? Can they be included in the next release?
There might be more useful MKL methods that are missing, but these two are what I had use for...
The text was updated successfully, but these errors were encountered: