Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
721d2b4e
提交
721d2b4e
authored
5月 04, 2015
作者:
David Warde-Farley
提交者:
Arnaud Bergeron
6月 22, 2015
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Use six.reraise for advanced exception raising.
上级
402a0a85
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
15 行增加
和
13 行删除
+15
-13
cc.py
theano/gof/cc.py
+2
-3
link.py
theano/gof/link.py
+4
-2
opt.py
theano/gof/opt.py
+2
-2
debug.py
theano/sandbox/debug.py
+3
-2
basic_ops.py
theano/sandbox/gpuarray/basic_ops.py
+2
-2
comp.py
theano/sandbox/gpuarray/comp.py
+2
-2
没有找到文件。
theano/gof/cc.py
浏览文件 @
721d2b4e
...
...
@@ -12,7 +12,7 @@ from itertools import izip
import
numpy
from
theano.compat
import
PY3
from
theano.compat.six
import
string_types
from
theano.compat.six
import
string_types
,
reraise
from
theano.compat.six.moves
import
StringIO
,
xrange
from
theano.gof.utils
import
MethodNotDefined
...
...
@@ -1537,8 +1537,7 @@ class _CThunk(object):
' Was the error set in the c code?'
),
end
=
' '
,
file
=
sys
.
stderr
)
print
(
self
.
error_storage
,
file
=
sys
.
stderr
)
raise
raise
exc_type
,
exc_value
,
exc_trace
reraise
(
exc_type
,
exc_value
,
exc_trace
)
class
OpWiseCLinker
(
link
.
LocalLinker
):
...
...
theano/gof/link.py
浏览文件 @
721d2b4e
...
...
@@ -7,6 +7,8 @@ import traceback
import
numpy
import
theano
from
theano.compat
import
PY3
from
theano.compat.six
import
reraise
from
theano.compat.six.moves
import
StringIO
from
theano.gof
import
utils
from
theano.gof
import
graph
...
...
@@ -100,7 +102,7 @@ def raise_with_op(node, thunk=None, exc_info=None, storage_map=None):
exc_type
,
exc_value
,
exc_trace
=
exc_info
if
exc_type
==
KeyboardInterrupt
:
# print a simple traceback from KeyboardInterrupt
r
aise
exc_type
,
exc_value
,
exc_trace
r
eraise
(
exc_type
,
exc_value
,
exc_trace
)
try
:
trace
=
node
.
outputs
[
0
]
.
tag
.
trace
except
AttributeError
:
...
...
@@ -290,7 +292,7 @@ def raise_with_op(node, thunk=None, exc_info=None, storage_map=None):
exc_value
=
exc_type
(
str
(
exc_value
)
+
detailed_err_msg
+
'
\n
'
+
'
\n
'
.
join
(
hints
))
r
aise
exc_type
,
exc_value
,
exc_trace
r
eraise
(
exc_type
,
exc_value
,
exc_trace
)
class
Linker
(
object
):
...
...
theano/gof/opt.py
浏览文件 @
721d2b4e
...
...
@@ -942,10 +942,10 @@ def local_optimizer(tracks, inplace=False):
"""WRITEME"""
if
tracks
is
not
None
:
if
len
(
tracks
)
is
0
:
raise
ValueError
,
(
"Use None instead of an empty list to apply to all nodes."
,
f
.
__module__
,
f
.
__name__
)
raise
ValueError
(
"Use None instead of an empty list to apply to all nodes."
,
f
.
__module__
,
f
.
__name__
)
for
t
in
tracks
:
if
not
(
isinstance
(
t
,
op
.
Op
)
or
issubclass
(
t
,
op
.
PureOp
)):
raise
ValueError
,
(
"Tracks are op classes or instances"
,
f
.
__module__
,
f
.
__name__
)
raise
ValueError
(
"Tracks are op classes or instances"
,
f
.
__module__
,
f
.
__name__
)
requirements
=
()
if
inplace
:
dh_handler
=
dh
.
DestroyHandler
...
...
theano/sandbox/debug.py
浏览文件 @
721d2b4e
from
__future__
import
print_function
from
theano.compat.six
import
reraise
from
theano
import
gof
import
sys
...
...
@@ -81,7 +82,7 @@ class DebugLinker(gof.WrapLinker):
exc
.
node
=
node
exc
.
thunk
=
thunk
exc
.
linker
=
linker
r
aise
DebugException
,
exc
,
exc_trace
r
eraise
(
DebugException
,
exc
,
exc_trace
)
def
compare_variables
(
self
,
i
,
node
,
*
thunks
):
thunk0
=
thunks
[
0
]
...
...
@@ -146,7 +147,7 @@ class DebugLinker(gof.WrapLinker):
exc
.
step
=
i
exc
.
node
=
node
exc
.
thunks
=
thunks
r
aise
DebugException
,
exc
,
exc_trace
r
eraise
(
DebugException
,
exc
,
exc_trace
)
def
print_info
(
i
,
node
,
*
thunks
):
...
...
theano/sandbox/gpuarray/basic_ops.py
浏览文件 @
721d2b4e
...
...
@@ -73,7 +73,7 @@ class Kernel(object):
elif
isinstance
(
t
,
Variable
):
return
t
.
type
.
dtype
else
:
raise
TypeError
,
"can't get a dtype from
%
s"
%
(
type
(
t
),
)
raise
TypeError
(
"can't get a dtype from
%
s"
%
(
type
(
t
),)
)
dtypes
=
[
get_dtype
(
t
)
for
t
in
types
]
flags
=
dict
(
cluda
=
True
)
if
any
(
d
==
numpy
.
float64
for
d
in
dtypes
):
...
...
@@ -116,7 +116,7 @@ class GpuKernelBase(object):
iterable of Kernel objects that describe the kernels this op
will need.
"""
raise
MethodNotDefined
,
'gpu_kernels'
raise
MethodNotDefined
(
'gpu_kernels'
)
def
c_headers
(
self
):
try
:
...
...
theano/sandbox/gpuarray/comp.py
浏览文件 @
721d2b4e
...
...
@@ -40,9 +40,9 @@ class NVCC_compiler(NVCC_base):
if
not
any
([
'-arch=sm_'
in
f
for
f
in
flags
]):
dev
=
theano
.
sandbox
.
gpuarray
.
init_dev
.
device
if
dev
is
None
:
raise
Exception
,
"Trying to compile GPU code without a context"
raise
Exception
(
"Trying to compile GPU code without a context"
)
if
dev
.
startswith
(
"opencl"
):
raise
Exception
,
"Trying to call nvcc with an OpenCL context"
raise
Exception
(
"Trying to call nvcc with an OpenCL context"
)
assert
dev
.
startswith
(
'cuda'
)
if
dev
==
'cuda'
:
n
=
theano
.
sandbox
.
cuda
.
use
.
device_number
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论