numpy.distutils.ccompiler_opt.CCompilerOpt.feature_untied #
方法
- distutils.ccompiler_opt.CCompilerOpt。feature_untied (名称) [来源] #
与“feature_ahead()”相同,但如果两个功能相互暗示并保持最高的兴趣。
- 参数:
- “名称”:序列
大写的 CPU 功能名称序列。
- 返回:
- 按“名称”排序的 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"]