numpy.distutils.ccompiler_opt.CCompilerOpt.feature_untied#

方法

distutils.ccompiler_opt.CCompilerOpt.feature_untied(names)[source]#

与“feature_ahead()”相同,但如果两个特性相互暗示,则保留最高兴趣的特性。

参数:
‘names’:序列

以大写形式表示的 CPU 特性名称序列。

返回值:
按“names”中的顺序排列的 CPU 特性列表

示例

>>> self.feature_untied(["SSE2", "SSE3", "SSE41"])
["SSE2", "SSE3", "SSE41"]
# assume AVX2 and FMA3 implies each other
>>> self.feature_untied(["SSE2", "SSE3", "SSE41", "FMA3", "AVX2"])
["SSE2", "SSE3", "SSE41", "AVX2"]