Reputation: 1410
How to know version of MKL used by numpy in python anaconda distributive from python code?
Upvotes: 2
Views: 3533
Reputation: 581
My two cents: there is another method to check the version of mkl w/o code modification. You need to set/export environment variable MKL_VERBOSE=1
( by default this variable is not set) and all mkl's functions will print version and many debug info.
Upvotes: 3
Reputation: 1410
Found method mkl.get_version_info():
import mkl
mkl.get_version_string()
console:
'Intel(R) Math Kernel Library Version 2019.0.0 Product Build 20180829 for Intel(R) 64 architecture applications'
Upvotes: 5