You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.
I tried to install Vectorize.jl on my Mac (running MacOS El Capitan), and the build failed because MKL was missing. Shouldn't it have just omitted MKL from consideration since it was missing? See here for transcript.
The text was updated successfully, but these errors were encountered:
You're correct - it should just not load/use any MKL instructions - I'll take a look at why the MKL detection is failing and get back to you ASAP. Thanks for trying it out!
This is strange - the error is caused by the lack of libmkl_intel_thread.dylib. However, libmkl_intel_thread.dylib is only loaded during MKL initialization which is guarded with a if (Libdl.find_library(["libmkl_rt"], ["/opt/intel/mkl/lib"]) != "" statement. Were the MKL files on your system but not installed (added to PATH etc.) such that Libdl may have been able to find the files?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I tried to install
Vectorize.jl
on my Mac (running MacOS El Capitan), and the build failed because MKL was missing. Shouldn't it have just omitted MKL from consideration since it was missing? See here for transcript.The text was updated successfully, but these errors were encountered: