Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
0dfc7a51
提交
0dfc7a51
authored
2月 28, 2017
作者:
f0k
提交者:
Jan Schlüter
3月 05, 2017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Faster compilation and import with cuda backend
上级
76cfd7e8
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
23 行增加
和
1 行删除
+23
-1
configdefaults.py
theano/configdefaults.py
+10
-0
nvcc_compiler.py
theano/sandbox/cuda/nvcc_compiler.py
+13
-1
没有找到文件。
theano/configdefaults.py
浏览文件 @
0dfc7a51
...
...
@@ -239,6 +239,16 @@ AddConfigVar('nvcc.fastmath',
# if theano.sandbox.cuda is loaded or not.
in_c_key
=
False
)
AddConfigVar
(
'nvcc.cudafe'
,
"If 'always' (the default), cudafe will be called for every GPU"
" Op compilation. If 'heuristic', it will only be called if the"
" source code appears to contain CUDA code. This can speed up"
" compilation and importing theano, but might fail to compile"
" some custom GPU Ops."
,
EnumStr
(
'always'
,
'heuristic'
),
# Not needed in c key, does not affect the compilation result.
in_c_key
=
False
)
AddConfigVar
(
'gpuarray.sync'
,
"""If True, every op will make sure its work is done before
returning. Setting this to True will slow down execution,
...
...
theano/sandbox/cuda/nvcc_compiler.py
浏览文件 @
0dfc7a51
...
...
@@ -230,7 +230,19 @@ class NVCC_compiler(Compiler):
if
python_lib
not
in
lib_dirs
:
lib_dirs
.
append
(
python_lib
)
cppfilename
=
os
.
path
.
join
(
location
,
'mod.cu'
)
if
(
config
.
nvcc
.
cudafe
==
'heuristic'
and
not
any
(
marker
in
src_code
for
marker
in
(
"__global__"
,
"__device__"
,
"__host__"
,
"<<<"
,
"nvmatrix.cuh"
))):
# only calls existing CUDA functions, can compile much faster
cppfilename
=
os
.
path
.
join
(
location
,
'mod.cpp'
)
src_code
=
(
"#include <cuda.h>
\n
"
"#include <cuda_runtime_api.h>
\n
"
+
src_code
)
else
:
# contains CUDA host code or device functions, needs .cu extension
cppfilename
=
os
.
path
.
join
(
location
,
'mod.cu'
)
with
open
(
cppfilename
,
'w'
)
as
cppfile
:
_logger
.
debug
(
'Writing module C++ code to
%
s'
,
cppfilename
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论