Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
42b8b66e
提交
42b8b66e
authored
9月 29, 2012
作者:
Ian Goodfellow
提交者:
Frederic
10月 02, 2012
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
use izip where appropriate
上级
8054c46b
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
24 行增加
和
24 行删除
+24
-24
basic.py
theano/tensor/basic.py
+6
-6
elemwise.py
theano/tensor/elemwise.py
+18
-18
没有找到文件。
theano/tensor/basic.py
浏览文件 @
42b8b66e
...
...
@@ -65,7 +65,7 @@ def check_equal_numpy(x, y):
elif
(
isinstance
(
x
,
numpy
.
random
.
RandomState
)
and
isinstance
(
y
,
numpy
.
random
.
RandomState
)):
return
python_all
(
numpy
.
all
(
a
==
b
)
for
a
,
b
in
zip
(
x
.
__getstate__
(),
y
.
__getstate__
()))
i
zip
(
x
.
__getstate__
(),
y
.
__getstate__
()))
else
:
return
x
==
y
...
...
@@ -3823,7 +3823,7 @@ class Subtensor(Op):
# infer the broadcasting pattern
padded
=
(
idx_list
+
[
slice
(
None
,
None
,
None
)]
*
(
x
.
type
.
ndim
-
len
(
idx_list
)))
broadcastable
=
[
bc
for
p
,
bc
in
zip
(
padded
,
x
.
type
.
broadcastable
)
broadcastable
=
[
bc
for
p
,
bc
in
i
zip
(
padded
,
x
.
type
.
broadcastable
)
if
isinstance
(
p
,
slice
)]
input_types
=
Subtensor
.
collapse
(
idx_list
,
...
...
@@ -3832,7 +3832,7 @@ class Subtensor(Op):
raise
IndexError
(
"Not enough inputs to fill in the Subtensor template."
,
inputs
,
idx_list
)
for
input
,
expected_type
in
zip
(
inputs
,
input_types
):
for
input
,
expected_type
in
i
zip
(
inputs
,
input_types
):
if
input
.
type
!=
expected_type
:
raise
TypeError
(
"Wrong type for Subtensor template. Expected
%
s, got
%
s."
...
...
@@ -4458,7 +4458,7 @@ class IncSubtensor(Op):
raise
IndexError
(
"Not enough inputs to fill in the Subtensor template."
,
inputs
,
idx_list
)
for
input
,
expected_type
in
zip
(
inputs
,
input_types
):
for
input
,
expected_type
in
i
zip
(
inputs
,
input_types
):
if
input
.
type
!=
expected_type
:
raise
TypeError
(
"Wrong type for Subtensor template. Expected
%
s, got
%
s."
...
...
@@ -5830,7 +5830,7 @@ class PermuteRowElements(Op):
# Compute the broadcastable pattern of the output
out_broadcastable
=
[
xb
and
yb
for
xb
,
yb
in
zip
(
x
.
type
.
broadcastable
,
y
.
type
.
broadcastable
)]
i
zip
(
x
.
type
.
broadcastable
,
y
.
type
.
broadcastable
)]
out_type
=
tensor
(
dtype
=
x
.
type
.
dtype
,
broadcastable
=
out_broadcastable
)
inputlist
=
[
x
,
y
,
inverse
]
...
...
@@ -5897,7 +5897,7 @@ class PermuteRowElements(Op):
# Make sure the output is big enough
out_s
=
[]
for
xdim
,
ydim
in
zip
(
x_s
,
y_s
):
for
xdim
,
ydim
in
i
zip
(
x_s
,
y_s
):
if
xdim
==
ydim
:
outdim
=
xdim
elif
xdim
==
1
:
...
...
theano/tensor/elemwise.py
浏览文件 @
42b8b66e
...
...
@@ -539,14 +539,14 @@ class Elemwise(Op):
# it is multiplied by nout because Elemwise supports multiple outputs
# (nout of them)
out_broadcastables
=
[[
all
(
bcast
)
for
bcast
in
zip
(
*
[
input
.
type
.
broadcastable
for
bcast
in
i
zip
(
*
[
input
.
type
.
broadcastable
for
input
in
inputs
])]]
*
shadow
.
nout
#inplace_pattern maps output idx -> input idx
inplace_pattern
=
self
.
inplace_pattern
if
inplace_pattern
:
for
overwriter
,
overwritten
in
inplace_pattern
.
items
():
for
ob
,
ib
in
zip
(
out_broadcastables
[
overwriter
],
for
ob
,
ib
in
i
zip
(
out_broadcastables
[
overwriter
],
inputs
[
overwritten
]
.
type
.
broadcastable
):
if
ib
and
not
ob
:
raise
ValueError
((
...
...
@@ -561,7 +561,7 @@ class Elemwise(Op):
([
i
.
type
.
dtype
for
i
in
inputs
],
out_dtypes
,
inplace_pattern
)))
outputs
=
[
TensorType
(
dtype
=
dtype
,
broadcastable
=
broadcastable
)()
for
dtype
,
broadcastable
in
zip
(
out_dtypes
,
out_broadcastables
)
for
dtype
,
broadcastable
in
i
zip
(
out_dtypes
,
out_broadcastables
)
]
return
Apply
(
self
,
inputs
,
outputs
)
...
...
@@ -609,7 +609,7 @@ class Elemwise(Op):
bgrads
=
self
.
_bgrad
(
inputs
,
ograds
)
rop_out
=
None
for
jdx
,
(
inp
,
eval_point
)
in
enumerate
(
zip
(
inputs
,
for
jdx
,
(
inp
,
eval_point
)
in
enumerate
(
i
zip
(
inputs
,
eval_points
)):
# if None, then we can just ignore this branch ..
# what we do is to assume that for any non-differentiable
...
...
@@ -663,7 +663,7 @@ class Elemwise(Op):
# can tell this op did
# the right thing.
new_rval
=
[]
for
elem
,
ipt
in
zip
(
rval
,
inputs
):
for
elem
,
ipt
in
i
zip
(
rval
,
inputs
):
if
isinstance
(
elem
.
type
,
(
NullType
,
DisconnectedType
)):
new_rval
.
append
(
elem
)
else
:
...
...
@@ -758,7 +758,7 @@ class Elemwise(Op):
*
[
transform
(
ipt
)
for
ipt
in
node
.
inputs
])
return
new_r
ret
=
[]
for
scalar_igrad
,
ipt
in
zip
(
scalar_igrads
,
inputs
):
for
scalar_igrad
,
ipt
in
i
zip
(
scalar_igrads
,
inputs
):
if
scalar_igrad
is
None
:
# undefined gradient
ret
.
append
(
None
)
...
...
@@ -769,7 +769,7 @@ class Elemwise(Op):
def
perform
(
self
,
node
,
inputs
,
output_storage
):
maxsize
=
max
(
len
(
input
.
shape
)
for
input
in
inputs
)
for
dims
in
zip
(
*
[([(
1
,
True
)]
*
(
maxsize
-
len
(
input
.
shape
))
for
dims
in
i
zip
(
*
[([(
1
,
True
)]
*
(
maxsize
-
len
(
input
.
shape
))
+
zip
(
input
.
shape
,
sinput
.
type
.
broadcastable
))
for
input
,
sinput
in
zip
(
inputs
,
node
.
inputs
)]):
if
max
(
d
for
d
,
b
in
dims
)
!=
1
and
(
1
,
False
)
in
dims
:
...
...
@@ -801,7 +801,7 @@ class Elemwise(Op):
# Determine the shape of outputs
out_shape
=
[]
for
values
in
zip
(
*
[
input
.
shape
for
input
in
inputs
]):
for
values
in
i
zip
(
*
[
input
.
shape
for
input
in
inputs
]):
if
numpy
.
prod
(
values
)
==
0
:
# All non-broadcasted dimensions should be zero
assert
max
(
values
)
<=
1
...
...
@@ -811,7 +811,7 @@ class Elemwise(Op):
out_shape
=
tuple
(
out_shape
)
if
not
self
.
inplace_pattern
:
for
output
,
storage
in
zip
(
node
.
outputs
,
output_storage
):
for
output
,
storage
in
i
zip
(
node
.
outputs
,
output_storage
):
odat
=
storage
[
0
]
if
odat
is
not
None
:
if
odat
.
shape
!=
out_shape
:
...
...
@@ -823,7 +823,7 @@ class Elemwise(Op):
storage
[
0
]
=
odat
else
:
for
i
,
(
output
,
storage
)
in
enumerate
(
zip
(
node
.
outputs
,
output_storage
)):
i
zip
(
node
.
outputs
,
output_storage
)):
#i is an output idx
if
i
in
self
.
inplace_pattern
:
odat
=
inputs
[
self
.
inplace_pattern
[
i
]]
...
...
@@ -917,7 +917,7 @@ class Elemwise(Op):
else
:
# there must be some input that is not broadcastable in
# dimension 'dim'
for
ishp
,
i
in
zip
(
i_shapes
,
node
.
inputs
):
for
ishp
,
i
in
i
zip
(
i_shapes
,
node
.
inputs
):
if
isinstance
(
i
.
type
,
theano
.
scalar
.
Scalar
):
continue
# we skip scalar
if
not
i
.
type
.
broadcastable
[
dim
]:
...
...
@@ -960,7 +960,7 @@ class Elemwise(Op):
# These are the outputs that we will need to allocate
# (output, name, name of the c type), transposed
real
=
zip
(
*
[(
r
,
s
,
r
.
type
.
dtype_specs
()[
1
])
for
r
,
s
in
zip
(
node
.
outputs
,
onames
)
if
r
not
in
dmap
])
for
r
,
s
in
i
zip
(
node
.
outputs
,
onames
)
if
r
not
in
dmap
])
if
real
:
real_outputs
,
real_onames
,
real_odtypes
=
real
else
:
...
...
@@ -970,7 +970,7 @@ class Elemwise(Op):
# (output, name), transposed (c type name not needed since we don't
# need to allocate.
aliased
=
zip
(
*
[(
r
,
s
)
for
(
r
,
s
)
in
zip
(
node
.
outputs
,
onames
)
if
r
in
dmap
])
for
(
r
,
s
)
in
i
zip
(
node
.
outputs
,
onames
)
if
r
in
dmap
])
if
aliased
:
aliased_outputs
,
aliased_onames
=
aliased
else
:
...
...
@@ -986,7 +986,7 @@ class Elemwise(Op):
# dimensionality)
nnested
=
len
(
orders
[
0
])
sub
=
dict
(
sub
)
for
i
,
(
input
,
iname
)
in
enumerate
(
zip
(
inputs
,
inames
)):
for
i
,
(
input
,
iname
)
in
enumerate
(
i
zip
(
inputs
,
inames
)):
# the c generators will substitute the input names for
# references to loop variables lv0, lv1, ...
sub
[
'lv
%
i'
%
i
]
=
iname
...
...
@@ -998,7 +998,7 @@ class Elemwise(Op):
# We loop over the "real" outputs, i.e., those that are not
# inplace (must be allocated) and we declare/allocate/check
# them
for
output
,
oname
,
odtype
in
zip
(
for
output
,
oname
,
odtype
in
i
zip
(
real_outputs
,
real_onames
,
real_odtypes
):
i
+=
1
# before this loop, i = number of inputs
sub
[
'lv
%
i'
%
i
]
=
oname
...
...
@@ -1014,7 +1014,7 @@ class Elemwise(Op):
# inplace (overwrite the contents of one of the inputs) and
# make the output pointers point to theur corresponding input
# pointers.
for
output
,
oname
in
zip
(
aliased_outputs
,
aliased_onames
):
for
output
,
oname
in
i
zip
(
aliased_outputs
,
aliased_onames
):
olv_index
=
inputs
.
index
(
dmap
[
output
][
0
])
iname
=
inames
[
olv_index
]
# We make the output point to the corresponding input and
...
...
@@ -1040,7 +1040,7 @@ class Elemwise(Op):
# not be declared, as they are #defined in defines
task_decl
=
""
.
join
([
"
%(dtype)
s&
%(name)
s_i = *
%(name)
s_iter;
\n
"
%
locals
()
for
name
,
dtype
in
zip
(
inames
+
list
(
real_onames
),
for
name
,
dtype
in
i
zip
(
inames
+
list
(
real_onames
),
idtypes
+
list
(
real_odtypes
))])
# We generate the C code of the inner loop using the scalar op
...
...
@@ -1339,7 +1339,7 @@ class CAReduce(Op):
nnested
=
len
(
order1
)
sub
=
dict
(
sub
)
for
i
,
(
input
,
iname
)
in
enumerate
(
zip
(
node
.
inputs
,
inames
)):
for
i
,
(
input
,
iname
)
in
enumerate
(
i
zip
(
node
.
inputs
,
inames
)):
sub
[
'lv
%
i'
%
i
]
=
iname
decl
=
cgen
.
make_declare
([
order
],
[
idtype
],
sub
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论