Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
ac850ee6
提交
ac850ee6
authored
7月 23, 2014
作者:
Frederic
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
some pep8
上级
689e5680
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
30 行增加
和
29 行删除
+30
-29
subtensor.py
theano/tensor/subtensor.py
+17
-16
test_inc_subtensor.py
theano/tensor/tests/test_inc_subtensor.py
+13
-13
没有找到文件。
theano/tensor/subtensor.py
浏览文件 @
ac850ee6
...
@@ -594,8 +594,7 @@ class Subtensor(Op):
...
@@ -594,8 +594,7 @@ class Subtensor(Op):
@staticmethod
@staticmethod
def
helper_c_code
(
node
,
name
,
inputs
,
outputs
,
sub
,
idx_list
,
view_ndim
,
def
helper_c_code
(
node
,
name
,
inputs
,
outputs
,
sub
,
idx_list
,
view_ndim
,
c_prefix
=
None
,
c_prefix
=
None
,
strides_mul
=
None
,
strides_mul
=
None
):
):
"""
"""
The parameters c_prefix are there to allow reusing this
The parameters c_prefix are there to allow reusing this
function on PyArray and CudaNdarray object.
function on PyArray and CudaNdarray object.
...
@@ -682,7 +681,8 @@ class Subtensor(Op):
...
@@ -682,7 +681,8 @@ class Subtensor(Op):
subensor_spec
=
"npy_intp * subtensor_spec = NULL;"
subensor_spec
=
"npy_intp * subtensor_spec = NULL;"
if
is_slice
:
if
is_slice
:
is_slice_init
=
"int is_slice[] = {"
+
","
.
join
([
str
(
s
)
for
s
in
is_slice
])
+
"};"
is_slice_init
=
"int is_slice[] = {"
+
","
.
join
([
str
(
s
)
for
s
in
is_slice
])
+
"};"
else
:
else
:
is_slice_init
=
"int* is_slice = NULL;"
is_slice_init
=
"int* is_slice = NULL;"
subtensor_init
=
"
\n
"
.
join
(
init_cmds
)
subtensor_init
=
"
\n
"
.
join
(
init_cmds
)
...
@@ -897,7 +897,8 @@ class Subtensor(Op):
...
@@ -897,7 +897,8 @@ class Subtensor(Op):
%(z)
s = xview;
%(z)
s = xview;
"""
%
locals
()
"""
%
locals
()
return
decl
+
checkNDim
+
"{"
+
get_xview
+
build_view
+
finish_view
+
"}"
return
(
decl
+
checkNDim
+
"{"
+
get_xview
+
build_view
+
finish_view
+
"}"
)
def
c_code_cache_version
(
self
):
def
c_code_cache_version
(
self
):
hv
=
self
.
helper_c_code_cache_version
()
hv
=
self
.
helper_c_code_cache_version
()
...
@@ -1022,9 +1023,9 @@ def inc_subtensor(x, y, inplace=False, set_instead_of_inc=False,
...
@@ -1022,9 +1023,9 @@ def inc_subtensor(x, y, inplace=False, set_instead_of_inc=False,
destroyhandler_tolerate_aliased
=
[[
0
,
1
]]
destroyhandler_tolerate_aliased
=
[[
0
,
1
]]
else
:
else
:
destroyhandler_tolerate_aliased
=
[]
destroyhandler_tolerate_aliased
=
[]
the_op
=
IncSubtensor
(
x
.
owner
.
op
.
idx_list
,
inplace
,
set_instead_of_inc
,
the_op
=
IncSubtensor
(
destroyhandler_tolerate_aliased
=
destroyhandler_tolerate_aliased
x
.
owner
.
op
.
idx_list
,
inplace
,
set_instead_of_inc
,
)
destroyhandler_tolerate_aliased
=
destroyhandler_tolerate_aliased
)
real_x
=
x
.
owner
.
inputs
[
0
]
real_x
=
x
.
owner
.
inputs
[
0
]
real_idxargs
=
x
.
owner
.
inputs
[
1
:]
real_idxargs
=
x
.
owner
.
inputs
[
1
:]
return
the_op
(
real_x
,
y
,
*
real_idxargs
)
return
the_op
(
real_x
,
y
,
*
real_idxargs
)
...
@@ -1105,10 +1106,10 @@ class IncSubtensor(Op):
...
@@ -1105,10 +1106,10 @@ class IncSubtensor(Op):
self
.
set_instead_of_inc
=
set_instead_of_inc
self
.
set_instead_of_inc
=
set_instead_of_inc
def
__eq__
(
self
,
other
):
def
__eq__
(
self
,
other
):
return
type
(
self
)
==
type
(
other
)
\
return
(
type
(
self
)
==
type
(
other
)
and
and
self
.
idx_list
==
other
.
idx_list
\
self
.
idx_list
==
other
.
idx_list
and
and
self
.
inplace
==
other
.
inplace
\
self
.
inplace
==
other
.
inplace
and
and
self
.
set_instead_of_inc
==
other
.
set_instead_of_inc
self
.
set_instead_of_inc
==
other
.
set_instead_of_inc
)
def
__hash__
(
self
):
def
__hash__
(
self
):
msg
=
[]
msg
=
[]
...
@@ -1120,12 +1121,12 @@ class IncSubtensor(Op):
...
@@ -1120,12 +1121,12 @@ class IncSubtensor(Op):
idx_list
=
tuple
(
msg
)
idx_list
=
tuple
(
msg
)
# backport
# backport
#idx_list = tuple((entry.start, entry.stop, entry.step)
#
idx_list = tuple((entry.start, entry.stop, entry.step)
# if isinstance(entry, slice)
# if isinstance(entry, slice)
# else entry
# else entry
# for entry in self.idx_list)
# for entry in self.idx_list)
return
hashtype
(
self
)
^
hash
(
idx_list
)
^
hash
(
self
.
inplace
)
\
return
(
hashtype
(
self
)
^
hash
(
idx_list
)
^
hash
(
self
.
inplace
)
^
^
hash
(
self
.
set_instead_of_inc
)
hash
(
self
.
set_instead_of_inc
)
)
def
__str__
(
self
):
def
__str__
(
self
):
indices
=
[]
indices
=
[]
...
@@ -1225,7 +1226,7 @@ class IncSubtensor(Op):
...
@@ -1225,7 +1226,7 @@ class IncSubtensor(Op):
if
not
self
.
set_instead_of_inc
:
if
not
self
.
set_instead_of_inc
:
sub_x
+=
y
sub_x
+=
y
else
:
else
:
#sub_x += -sub_x + y
#
sub_x += -sub_x + y
x
.
__setitem__
(
cdata
,
y
)
x
.
__setitem__
(
cdata
,
y
)
else
:
else
:
# scalar case
# scalar case
...
@@ -1469,7 +1470,7 @@ class IncSubtensor(Op):
...
@@ -1469,7 +1470,7 @@ class IncSubtensor(Op):
axis_to_sum
.
append
(
i
)
axis_to_sum
.
append
(
i
)
elif
(
gy
.
broadcastable
[
i
]
is
True
and
elif
(
gy
.
broadcastable
[
i
]
is
True
and
y_broad
[
i
]
is
False
):
y_broad
[
i
]
is
False
):
# This mean that T
H
eano where able to infer that
# This mean that T
h
eano where able to infer that
# gy.shape[i] is 1, so y.shape[i] is 1, but we
# gy.shape[i] is 1, so y.shape[i] is 1, but we
# didn't know it. It is fine.
# didn't know it. It is fine.
pass
pass
...
...
theano/tensor/tests/test_inc_subtensor.py
浏览文件 @
ac850ee6
...
@@ -83,11 +83,11 @@ class Test_inc_subtensor(unittest.TestCase):
...
@@ -83,11 +83,11 @@ class Test_inc_subtensor(unittest.TestCase):
f
(
rng_randX
(
3
,
1
),
rng_randX
(
1
))
f
(
rng_randX
(
3
,
1
),
rng_randX
(
1
))
# These ones should not
# These ones should not
self
.
assertRaises
(
ValueError
,
self
.
assertRaises
(
ValueError
,
f
,
rng_randX
(
3
,
1
),
rng_randX
(
2
))
f
,
rng_randX
(
3
,
1
),
rng_randX
(
2
))
self
.
assertRaises
(
ValueError
,
self
.
assertRaises
(
ValueError
,
f
,
rng_randX
(
3
,
1
),
rng_randX
(
3
))
f
,
rng_randX
(
3
,
1
),
rng_randX
(
3
))
self
.
assertRaises
(
ValueError
,
self
.
assertRaises
(
ValueError
,
f
,
rng_randX
(
3
,
1
),
rng_randX
(
0
))
f
,
rng_randX
(
3
,
1
),
rng_randX
(
0
))
def
test_simple_3d
(
self
):
def
test_simple_3d
(
self
):
"""Increments or sets part of a tensor by a scalar using full slice and
"""Increments or sets part of a tensor by a scalar using full slice and
...
@@ -150,21 +150,21 @@ class Test_inc_subtensor(unittest.TestCase):
...
@@ -150,21 +150,21 @@ class Test_inc_subtensor(unittest.TestCase):
for
f_slice
in
[
inc_slice
,
set_slice
]:
for
f_slice
in
[
inc_slice
,
set_slice
]:
# vector
# vector
utt
.
verify_grad
(
utt
.
verify_grad
(
f_slice
(
slice
(
2
,
4
,
None
)),
f_slice
(
slice
(
2
,
4
,
None
)),
(
numpy
.
asarray
([
0
,
1
,
2
,
3
,
4
,
5.
]),
(
numpy
.
asarray
([
0
,
1
,
2
,
3
,
4
,
5.
]),
numpy
.
asarray
([
9
,
9.
]),
))
numpy
.
asarray
([
9
,
9.
]),
))
# matrix
# matrix
utt
.
verify_grad
(
utt
.
verify_grad
(
f_slice
(
slice
(
1
,
2
,
None
),
slice
(
None
,
None
,
None
)),
f_slice
(
slice
(
1
,
2
,
None
),
slice
(
None
,
None
,
None
)),
(
numpy
.
asarray
([[
0
,
1
],
[
2
,
3
],
[
4
,
5.
]]),
(
numpy
.
asarray
([[
0
,
1
],
[
2
,
3
],
[
4
,
5.
]]),
numpy
.
asarray
([[
9
,
9.
]]),
))
numpy
.
asarray
([[
9
,
9.
]]),
))
#single element
#
single element
utt
.
verify_grad
(
utt
.
verify_grad
(
f_slice
(
2
,
1
),
f_slice
(
2
,
1
),
(
numpy
.
asarray
([[
0
,
1
],
[
2
,
3
],
[
4
,
5.
]]),
(
numpy
.
asarray
([[
0
,
1
],
[
2
,
3
],
[
4
,
5.
]]),
numpy
.
asarray
(
9.
),))
numpy
.
asarray
(
9.
),))
# broadcast
# broadcast
utt
.
verify_grad
(
utt
.
verify_grad
(
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论