当前位置: 首页>>代码示例>>Python>>正文


Python Flags.nrt方法代码示例

本文整理汇总了Python中numba.compiler.Flags.nrt方法的典型用法代码示例。如果您正苦于以下问题:Python Flags.nrt方法的具体用法?Python Flags.nrt怎么用?Python Flags.nrt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在numba.compiler.Flags的用法示例。


在下文中一共展示了Flags.nrt方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: mk_pipeline

# 需要导入模块: from numba.compiler import Flags [as 别名]
# 或者: from numba.compiler.Flags import nrt [as 别名]
 def mk_pipeline(cls, args, return_type=None, flags=None, locals={},
                 library=None, typing_context=None, target_context=None):
     if not flags:
         flags = Flags()
     flags.nrt = True
     if typing_context is None:
         typing_context = typing.Context()
     if target_context is None:
         target_context = cpu.CPUContext(typing_context)
     return cls(typing_context, target_context, library, args, return_type,
                flags, locals)
开发者ID:arvindchari88,项目名称:newGitTest,代码行数:13,代码来源:test_array_exprs.py

示例2: mk_pipeline

# 需要导入模块: from numba.compiler import Flags [as 别名]
# 或者: from numba.compiler.Flags import nrt [as 别名]
 def mk_pipeline(cls, args, return_type=None, flags=None, locals={},
                 library=None, typing_context=None, target_context=None):
     if not flags:
         flags = Flags()
     flags.nrt = True
     if typing_context is None:
         typing_context = registry.cpu_target.typing_context
     if target_context is None:
         target_context =  registry.cpu_target.target_context
     return cls(typing_context, target_context, library, args, return_type,
                flags, locals)
开发者ID:esc,项目名称:numba,代码行数:13,代码来源:test_array_analysis.py


注:本文中的numba.compiler.Flags.nrt方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。