numpy.distutils.ccompiler_opt.CCompilerOpt.feature_c_preprocessor #
方法
- distutils.ccompiler_opt.CCompilerOpt。feature_c_preprocessor ( feature_name , tabs = 0 ) [来源] #
生成 C 预处理器定义并包含 CPU 功能的标头。
- 参数:
- '功能名称':str
CPU 功能名称以大写形式显示。
- ‘标签’:int
如果 > 0,则根据制表符的数量将生成的字符串向右对齐。
- 返回:
- str,生成的 C 预处理器
例子
>>> self.feature_c_preprocessor("SSE3") /** SSE3 **/ #define NPY_HAVE_SSE3 1 #include <pmmintrin.h>