numexpr,检查是否存在 VML
numexpr, check for the presence of VML
有许多不同的 Python distributions 允许安装补充模块,有时使用不同的工具,因此当安装新包时,并不总是立即清楚包是如何构建的。
在这方面我想问的一个具体问题是,我的 numexpr
模块是针对 MKL libraries and, more specifically, the Vector Mathematical Functions code (VML) 构建的。
是否可以使用 Python 检查我的发行版安装的 numexpr
模块是否支持 VML?
你可以试试这个:
import numexpr as ne
ne.use_vml
有许多不同的 Python distributions 允许安装补充模块,有时使用不同的工具,因此当安装新包时,并不总是立即清楚包是如何构建的。
在这方面我想问的一个具体问题是,我的 numexpr
模块是针对 MKL libraries and, more specifically, the Vector Mathematical Functions code (VML) 构建的。
是否可以使用 Python 检查我的发行版安装的 numexpr
模块是否支持 VML?
你可以试试这个:
import numexpr as ne
ne.use_vml