當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Python numpy CCompilerOpt.feature_implies用法及代碼示例

本文簡要介紹 python 語言中numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies的用法。

用法:

distutils.ccompiler_opt.CCompilerOpt.feature_implies(names, keep_origins=False)

返回 ‘names’ 暗示的一組 CPU 函數

參數

names: str or sequence of str

大寫的 CPU 函數名稱。

keep_origins: bool

如果為 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'}

相關用法


注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。