本文簡要介紹 python 語言中numpy.distutils.ccompiler_opt.CCompilerOpt.feature_untied
的用法。
用法:
distutils.ccompiler_opt.CCompilerOpt.feature_untied(names)
與“feature_ahead()”相同,但如果兩個特征相互暗示並保持最高興趣。
- ‘names’: sequence:
大寫的 CPU 函數名稱序列。
- 按原樣排序的 CPU 函數列表‘names’
參數:
返回:
例子:
>>> 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"]
相關用法
- Python numpy CCompilerOpt.feature_c_preprocessor用法及代碼示例
- Python numpy CCompilerOpt.feature_implies用法及代碼示例
- Python numpy CCompilerOpt.feature_ahead用法及代碼示例
- Python numpy CCompilerOpt.cc_normalize_flags用法及代碼示例
- Python numpy Chebyshev.mapparms用法及代碼示例
- Python numpy RandomState.standard_exponential用法及代碼示例
- Python numpy hamming用法及代碼示例
- Python numpy legendre.legint用法及代碼示例
- Python numpy chararray.ndim用法及代碼示例
- Python numpy chebyshev.chebsub用法及代碼示例
- Python numpy chararray.nbytes用法及代碼示例
- Python numpy ma.indices用法及代碼示例
- Python numpy matrix.A1用法及代碼示例
- Python numpy MaskedArray.var用法及代碼示例
- Python numpy ma.zeros用法及代碼示例
- Python numpy broadcast用法及代碼示例
- Python numpy matrix.T用法及代碼示例
- Python numpy matrix.I用法及代碼示例
- Python numpy MaskedArray.T用法及代碼示例
- Python numpy hermite.hermfromroots用法及代碼示例
- Python numpy hermite_e.hermediv用法及代碼示例
- Python numpy recarray.dot用法及代碼示例
- Python numpy random.mtrand.RandomState.wald用法及代碼示例
- Python numpy trim_zeros用法及代碼示例
- Python numpy chebyshev.chebdiv用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.distutils.ccompiler_opt.CCompilerOpt.feature_untied。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。