本文整理汇总了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
示例2: c_header_dirs
def c_header_dirs(self):
return [pygpu.get_include()]
示例3: c_header_dirs
def c_header_dirs(self):
return [pygpu.get_include(), os.path.dirname(__file__)]
示例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
示例5: c_header_dirs
def c_header_dirs(self):
return [
os.path.dirname(__file__),
gpuarray_helper_inc_dir(),
pygpu.get_include()]
示例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
示例7: c_header_dirs
def c_header_dirs(self):
return [pygpu.get_include(), gpuarray_helper_inc_dir()]