numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies#
方法
- distutils.ccompiler_opt.CCompilerOpt.feature_implies(names, keep_origins=False)[源代码]#
返回一组由 ‘names’ 隐含的 CPU 特性
- 参数:
- namesstr 或 str 序列
CPU 特性名称(s) 大写.
- keep_originsbool
如果为 False(默认),则返回的集合将不包含来自 ‘names’ 的任何特征.这种情况仅在两个特征相互暗示时发生.
示例
>>> self.feature_implies("SSE3") {'SSE', 'SSE2'} >>> self.feature_implies("SSE2") {'SSE'} >>> self.feature_implies("SSE2", keep_origins=True) # 'SSE2' found here since 'SSE' and 'SSE2' imply each other {'SSE', 'SSE2'}