-
Notifications
You must be signed in to change notification settings - Fork 189
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
warning about BLAS.vendor being deprecated on Julia v1.7 #922
Comments
This is from here: Line 67 in 5d227fc
Hopefully, this warning can just be removed in Julia 1.7, since I think #443 may finally be fixed by @staticfloat's new |
Mmm, it's unclear to me what the root cause of #443 is; is it that Julia configures MKL to be 64-bit and Numpy expects it to be 32-bit? If so, I guess someone needs to experiment with whether it's possible to load MKL as 32-bit and 64-bit at the same time with LBT. |
Yes. It's why we were bugging Intel about getting us an ILP64 version of MKL with prefixed symbols, as you'll recall. (Are we able to use that yet?) |
Should we at least replace the |
It would be good if the deprecation warning could be fixed (possibly as suggested by @carstenbauer) since the deprecation warnings break e.g. the doctests in PythonOT (JuliaOptimalTransport/PythonOT.jl#18). |
Patch as suggested by Carsten Bauer in JuliaPy#922. GitHub: Fixes JuliaPy#922.
I see the following warning on Julia 1.7 on using
PyPlot
(which seems to usePyCall
internally):Sorry I don't have a repro immediately as the warning doesn't tell me where in my code this is happening. However this is clearly arising because
BLAS.vendor
is deprecated.The text was updated successfully, but these errors were encountered: