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


Python pygpu.get_include函数代码示例

本文整理汇总了Python中pygpu.get_include函数的典型用法代码示例。如果您正苦于以下问题:Python get_include函数的具体用法?Python get_include怎么用?Python get_include使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: c_header_dirs

 def c_header_dirs(self):
     other_dirs = []
     for dir_to_add in ['Library/include', 'include']:
         alt_inc_dir = os.path.abspath(os.path.normpath(sys.exec_prefix + '/' + dir_to_add))
         if os.path.exists(alt_inc_dir) and os.path.isdir(alt_inc_dir):
             other_dirs.append(alt_inc_dir)
     return [pygpu.get_include(), np.get_include()] + other_dirs
开发者ID:HapeMask,项目名称:Theano,代码行数:7,代码来源:type.py

示例2: c_header_dirs

 def c_header_dirs(self):
     return [pygpu.get_include()]
开发者ID:aalmah,项目名称:Theano,代码行数:2,代码来源:type.py

示例3: c_header_dirs

 def c_header_dirs(self):
     return [pygpu.get_include(), os.path.dirname(__file__)]
开发者ID:Thrandis,项目名称:Theano,代码行数:2,代码来源:reduction.py

示例4: c_header_dirs

 def c_header_dirs(self):
     dirs = [gpuarray_helper_inc_dir(), pygpu.get_include(),
             config.cuda.include_path]
     if config.magma.include_path:
         dirs.append(config.magma.include_path)
     return dirs
开发者ID:Theano,项目名称:Theano,代码行数:6,代码来源:linalg.py

示例5: c_header_dirs

 def c_header_dirs(self):
     return [
         os.path.dirname(__file__),
         gpuarray_helper_inc_dir(),
         pygpu.get_include()]
开发者ID:gvtulder,项目名称:Theano,代码行数:5,代码来源:sort.py

示例6: c_header_dirs

 def c_header_dirs(self):
     dirs = [os.path.dirname(__file__), pygpu.get_include()]
     if config.magma.include_path:
         dirs.append(config.magma.include_path)
     return dirs
开发者ID:HapeMask,项目名称:Theano,代码行数:5,代码来源:linalg.py

示例7: c_header_dirs

 def c_header_dirs(self):
     return [pygpu.get_include(), gpuarray_helper_inc_dir()]
开发者ID:DEVESHTARASIA,项目名称:Theano,代码行数:2,代码来源:reduction.py


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