本文整理汇总了Python中easybuild.easyblocks.generic.intelbase.IntelBase.extra_options方法的典型用法代码示例。如果您正苦于以下问题:Python IntelBase.extra_options方法的具体用法?Python IntelBase.extra_options怎么用?Python IntelBase.extra_options使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类easybuild.easyblocks.generic.intelbase.IntelBase
的用法示例。
在下文中一共展示了IntelBase.extra_options方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: extra_options
# 需要导入模块: from easybuild.easyblocks.generic.intelbase import IntelBase [as 别名]
# 或者: from easybuild.easyblocks.generic.intelbase.IntelBase import extra_options [as 别名]
def extra_options():
extra_vars = {
'set_mpi_wrappers_compiler': [False, 'Override default compiler used by MPI wrapper commands', CUSTOM],
'set_mpi_wrapper_aliases_gcc': [False, 'Set compiler for mpigcc/mpigxx via aliases', CUSTOM],
'set_mpi_wrapper_aliases_intel': [False, 'Set compiler for mpiicc/mpiicpc/mpiifort via aliases', CUSTOM],
'set_mpi_wrappers_all': [False, 'Set (default) compiler for all MPI wrapper commands', CUSTOM],
}
return IntelBase.extra_options(extra_vars)
示例2: extra_options
# 需要导入模块: from easybuild.easyblocks.generic.intelbase import IntelBase [as 别名]
# 或者: from easybuild.easyblocks.generic.intelbase.IntelBase import extra_options [as 别名]
def extra_options():
extra_vars = {
'ofi_internal': [True, 'Use internal shipped libfabric instead of external libfabric', CUSTOM],
'set_mpi_wrappers_compiler': [False, 'Override default compiler used by MPI wrapper commands', CUSTOM],
'set_mpi_wrapper_aliases_gcc': [False, 'Set compiler for mpigcc/mpigxx via aliases', CUSTOM],
'set_mpi_wrapper_aliases_intel': [False, 'Set compiler for mpiicc/mpiicpc/mpiifort via aliases', CUSTOM],
'set_mpi_wrappers_all': [False, 'Set (default) compiler for all MPI wrapper commands', CUSTOM],
}
return IntelBase.extra_options(extra_vars)
示例3: extra_options
# 需要导入模块: from easybuild.easyblocks.generic.intelbase import IntelBase [as 别名]
# 或者: from easybuild.easyblocks.generic.intelbase.IntelBase import extra_options [as 别名]
def extra_options():
extra_vars = {
'preferredmpi': ['impi3', "Preferred MPI type", CUSTOM],
}
return IntelBase.extra_options(extra_vars)
示例4: extra_options
# 需要导入模块: from easybuild.easyblocks.generic.intelbase import IntelBase [as 别名]
# 或者: from easybuild.easyblocks.generic.intelbase.IntelBase import extra_options [as 别名]
def extra_options():
"""Add easyconfig parameters custom to imkl (e.g. interfaces)."""
extra_vars = {
'interfaces': [True, "Indicates whether interfaces should be built", CUSTOM],
}
return IntelBase.extra_options(extra_vars)
示例5: extra_options
# 需要导入模块: from easybuild.easyblocks.generic.intelbase import IntelBase [as 别名]
# 或者: from easybuild.easyblocks.generic.intelbase.IntelBase import extra_options [as 别名]
def extra_options():
extra_vars = [('interfaces', [True, "Indicates whether interfaces should be built (default: True)", CUSTOM])]
return IntelBase.extra_options(extra_vars)
示例6: extra_options
# 需要导入模块: from easybuild.easyblocks.generic.intelbase import IntelBase [as 别名]
# 或者: from easybuild.easyblocks.generic.intelbase.IntelBase import extra_options [as 别名]
def extra_options():
extra_vars = [('preferredmpi', ['impi3', "Preferred MPI type (default: 'impi3')", CUSTOM])]
return IntelBase.extra_options(extra_vars)
示例7: extra_options
# 需要导入模块: from easybuild.easyblocks.generic.intelbase import IntelBase [as 别名]
# 或者: from easybuild.easyblocks.generic.intelbase.IntelBase import extra_options [as 别名]
def extra_options():
extra_vars = {"preferredmpi": ["impi3", "Preferred MPI type", CUSTOM]}
return IntelBase.extra_options(extra_vars)