Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
cff27c13
提交
cff27c13
authored
2月 21, 2012
作者:
Frederic
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
make {nvcc,gcc}_module_compile_str a class with another function compile_args…
make {nvcc,gcc}_module_compile_str a class with another function compile_args that get added in the keys.
上级
2f2b424a
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
17 行增加
和
12 行删除
+17
-12
cc.py
theano/gof/cc.py
+7
-3
cmodule.py
theano/gof/cmodule.py
+0
-0
cutils.py
theano/gof/cutils.py
+1
-1
lazylinker_c.py
theano/gof/lazylinker_c.py
+1
-1
__init__.py
theano/sandbox/cuda/__init__.py
+4
-3
nvcc_compiler.py
theano/sandbox/cuda/nvcc_compiler.py
+0
-0
type.py
theano/sandbox/cuda/type.py
+2
-2
scan_perform_ext.py
theano/scan_module/scan_perform_ext.py
+2
-2
没有找到文件。
theano/gof/cc.py
浏览文件 @
cff27c13
...
@@ -622,6 +622,10 @@ class CLinker(link.Linker):
...
@@ -622,6 +622,10 @@ class CLinker(link.Linker):
for
x
in
[
y
.
type
for
y
in
self
.
variables
]
+
[
y
.
op
for
y
in
self
.
node_order
]:
for
x
in
[
y
.
type
for
y
in
self
.
variables
]
+
[
y
.
op
for
y
in
self
.
node_order
]:
try
:
ret
+=
x
.
c_compile_args
()
try
:
ret
+=
x
.
c_compile_args
()
except
utils
.
MethodNotDefined
:
pass
except
utils
.
MethodNotDefined
:
pass
c_compiler
=
self
.
c_compiler
()
ret
+=
c_compiler
.
compile_args
()
ret
=
list
(
set
(
ret
))
#to remove duplicate
ret
=
list
(
set
(
ret
))
#to remove duplicate
for
x
in
[
y
.
type
for
y
in
self
.
variables
]
+
[
y
.
op
for
y
in
self
.
node_order
]:
for
x
in
[
y
.
type
for
y
in
self
.
variables
]
+
[
y
.
op
for
y
in
self
.
node_order
]:
try
:
try
:
...
@@ -661,7 +665,7 @@ class CLinker(link.Linker):
...
@@ -661,7 +665,7 @@ class CLinker(link.Linker):
raise
Exception
(
'Nodes have requested specific different compilers'
,
raise
Exception
(
'Nodes have requested specific different compilers'
,
(
c_compiler
,
x_compiler
))
(
c_compiler
,
x_compiler
))
if
(
c_compiler
is
None
):
if
(
c_compiler
is
None
):
return
cmodule
.
gcc_module_compile_st
r
return
cmodule
.
GCC_compile
r
else
:
return
c_compiler
else
:
return
c_compiler
def
header_dirs
(
self
):
def
header_dirs
(
self
):
...
@@ -1007,7 +1011,7 @@ class CLinker(link.Linker):
...
@@ -1007,7 +1011,7 @@ class CLinker(link.Linker):
libs
=
self
.
libraries
()
libs
=
self
.
libraries
()
preargs
=
self
.
compile_args
()
preargs
=
self
.
compile_args
()
compiler_name
=
c_compiler
.
__name__
compiler_name
=
c_compiler
.
__name__
if
compiler_name
==
'
nvcc_module_compile_st
r'
and
config
.
lib
.
amdlibm
:
if
compiler_name
==
'
NVCC_compile
r'
and
config
.
lib
.
amdlibm
:
# This lib does not work correctly with nvcc in device code.
# This lib does not work correctly with nvcc in device code.
# and newer version of g++ as 4.5.1.
# and newer version of g++ as 4.5.1.
# example of errors: "/usr/lib/gcc/x86_64-redhat-linux/4.5.1/include/mmintrin.h(49): error: identifier "__builtin_ia32_emms" is undefined"
# example of errors: "/usr/lib/gcc/x86_64-redhat-linux/4.5.1/include/mmintrin.h(49): error: identifier "__builtin_ia32_emms" is undefined"
...
@@ -1024,7 +1028,7 @@ class CLinker(link.Linker):
...
@@ -1024,7 +1028,7 @@ class CLinker(link.Linker):
try
:
try
:
_logger
.
debug
(
"LOCATION
%
s"
,
str
(
location
))
_logger
.
debug
(
"LOCATION
%
s"
,
str
(
location
))
try
:
try
:
module
=
c_compiler
(
module
=
c_compiler
.
compile_str
(
module_name
=
mod
.
name
,
module_name
=
mod
.
name
,
src_code
=
src_code
,
src_code
=
src_code
,
location
=
location
,
location
=
location
,
...
...
theano/gof/cmodule.py
浏览文件 @
cff27c13
差异被折叠。
点击展开。
theano/gof/cutils.py
浏览文件 @
cff27c13
...
@@ -70,7 +70,7 @@ except ImportError:
...
@@ -70,7 +70,7 @@ except ImportError:
if
not
os
.
path
.
exists
(
loc
):
if
not
os
.
path
.
exists
(
loc
):
os
.
mkdir
(
loc
)
os
.
mkdir
(
loc
)
cmodule
.
gcc_module_
compile_str
(
'cutils_ext'
,
code
,
location
=
loc
)
cmodule
.
GCC_compiler
.
compile_str
(
'cutils_ext'
,
code
,
location
=
loc
)
from
cutils_ext.cutils_ext
import
*
from
cutils_ext.cutils_ext
import
*
finally
:
finally
:
...
...
theano/gof/lazylinker_c.py
浏览文件 @
cff27c13
...
@@ -53,7 +53,7 @@ except ImportError:
...
@@ -53,7 +53,7 @@ except ImportError:
loc
=
os
.
path
.
join
(
config
.
compiledir
,
dirname
)
loc
=
os
.
path
.
join
(
config
.
compiledir
,
dirname
)
if
not
os
.
path
.
exists
(
loc
):
if
not
os
.
path
.
exists
(
loc
):
os
.
mkdir
(
loc
)
os
.
mkdir
(
loc
)
cmodule
.
gcc_module_
compile_str
(
dirname
,
code
,
location
=
loc
)
cmodule
.
GCC_compiler
.
compile_str
(
dirname
,
code
,
location
=
loc
)
# Save version into the __init__.py file.
# Save version into the __init__.py file.
init_py
=
os
.
path
.
join
(
loc
,
'__init__.py'
)
init_py
=
os
.
path
.
join
(
loc
,
'__init__.py'
)
open
(
init_py
,
'w'
)
.
write
(
'_version =
%
s
\n
'
%
version
)
open
(
init_py
,
'w'
)
.
write
(
'_version =
%
s
\n
'
%
version
)
...
...
theano/sandbox/cuda/__init__.py
浏览文件 @
cff27c13
...
@@ -87,7 +87,7 @@ libcuda_ndarray_so = os.path.join(cuda_ndarray_loc,
...
@@ -87,7 +87,7 @@ libcuda_ndarray_so = os.path.join(cuda_ndarray_loc,
# Add the theano cache directory's cuda_ndarray subdirectory to the
# Add the theano cache directory's cuda_ndarray subdirectory to the
# list of places that are hard-coded into compiled modules' runtime
# list of places that are hard-coded into compiled modules' runtime
# library search list. This works in conjunction with
# library search list. This works in conjunction with
# nvcc_compiler.
nvcc_module_
compile_str which adds this folder during
# nvcc_compiler.
NVCC_compiler.
compile_str which adds this folder during
# compilation with -L and also adds -lcuda_ndarray when compiling
# compilation with -L and also adds -lcuda_ndarray when compiling
# modules.
# modules.
nvcc_compiler
.
add_standard_rpath
(
cuda_ndarray_loc
)
nvcc_compiler
.
add_standard_rpath
(
cuda_ndarray_loc
)
...
@@ -117,7 +117,8 @@ try:
...
@@ -117,7 +117,8 @@ try:
if
not
os
.
path
.
exists
(
cuda_ndarray_loc
):
if
not
os
.
path
.
exists
(
cuda_ndarray_loc
):
os
.
makedirs
(
cuda_ndarray_loc
)
os
.
makedirs
(
cuda_ndarray_loc
)
nvcc_compiler
.
nvcc_module_compile_str
(
compiler
=
nvcc_compiler
.
NVCC_compiler
()
compiler
.
compile_str
(
'cuda_ndarray'
,
'cuda_ndarray'
,
code
,
code
,
location
=
cuda_ndarray_loc
,
location
=
cuda_ndarray_loc
,
...
@@ -130,7 +131,7 @@ except Exception, e:
...
@@ -130,7 +131,7 @@ except Exception, e:
if
cuda_available
:
if
cuda_available
:
# If necessary,
# If necessary,
# create a symlink called libcuda_ndarray.so
# create a symlink called libcuda_ndarray.so
# which nvcc_
module_compile_st
r uses when linking
# which nvcc_
compiler.NVCC_compile
r uses when linking
# any module except "cuda_ndarray" itself.
# any module except "cuda_ndarray" itself.
try
:
try
:
open
(
libcuda_ndarray_so
)
.
close
()
open
(
libcuda_ndarray_so
)
.
close
()
...
...
theano/sandbox/cuda/nvcc_compiler.py
浏览文件 @
cff27c13
差异被折叠。
点击展开。
theano/sandbox/cuda/type.py
浏览文件 @
cff27c13
...
@@ -12,7 +12,7 @@ try:
...
@@ -12,7 +12,7 @@ try:
# We must do those import to be able to create the full doc when nvcc
# We must do those import to be able to create the full doc when nvcc
# is not available
# is not available
import
cuda_ndarray.cuda_ndarray
as
cuda
import
cuda_ndarray.cuda_ndarray
as
cuda
from
theano.sandbox.cuda.nvcc_compiler
import
nvcc_module_compile_st
r
from
theano.sandbox.cuda.nvcc_compiler
import
NVCC_compile
r
import
cuda_ndarray
import
cuda_ndarray
except
ImportError
:
except
ImportError
:
pass
pass
...
@@ -370,7 +370,7 @@ class CudaNdarrayType(Type):
...
@@ -370,7 +370,7 @@ class CudaNdarrayType(Type):
return
(
2
,)
# with assertion about refcounts
return
(
2
,)
# with assertion about refcounts
def
c_compiler
(
self
):
def
c_compiler
(
self
):
return
nvcc_module_compile_st
r
return
NVCC_compile
r
def
c_compile_args
(
self
):
def
c_compile_args
(
self
):
ret
=
[]
ret
=
[]
...
...
theano/scan_module/scan_perform_ext.py
浏览文件 @
cff27c13
...
@@ -50,8 +50,8 @@ except ImportError:
...
@@ -50,8 +50,8 @@ except ImportError:
loc
=
os
.
path
.
join
(
config
.
compiledir
,
dirname
)
loc
=
os
.
path
.
join
(
config
.
compiledir
,
dirname
)
if
not
os
.
path
.
exists
(
loc
):
if
not
os
.
path
.
exists
(
loc
):
os
.
mkdir
(
loc
)
os
.
mkdir
(
loc
)
cmodule
.
gcc_module_
compile_str
(
dirname
,
code
,
location
=
loc
,
cmodule
.
GCC_compiler
.
compile_str
(
dirname
,
code
,
location
=
loc
,
preargs
=
[
'-pthread'
,
'-fwrapv'
,
preargs
=
[
'-pthread'
,
'-fwrapv'
,
'-O2'
,
'-O2'
,
'-fno-strict-aliasing'
])
'-fno-strict-aliasing'
])
# Save version into the __init__.py file.
# Save version into the __init__.py file.
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论