如何知道numpy在python anaconda分发版中使用的MKL版本?

如何通过python代码了解numpy在python anaconda分发版中使用的MKL版本?

PINGPING456 回答:如何知道numpy在python anaconda分发版中使用的MKL版本?

我的两分钱:还有另一种方法可以检查不带代码修改的mkl版本。您需要设置/导出环境变量MKL_VERBOSE=1(默认情况下未设置此变量),所有mkl的函数都会打印版本和许多调试信息。

,

找到方法mkl.get_version_info():

import mkl
mkl.get_version_string()

控制台:

'Intel(R) Math Kernel Library Version 2019.0.0 Product Build 20180829 for Intel(R) 64 architecture applications'
本文链接:https://www.f2er.com/3016051.html

大家都在问