Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
7b011a76
提交
7b011a76
authored
11月 29, 2010
作者:
Frederic Bastien
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix white space.
上级
02497760
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
26 行增加
和
26 行删除
+26
-26
elemwise.py
theano/tensor/elemwise.py
+26
-26
没有找到文件。
theano/tensor/elemwise.py
浏览文件 @
7b011a76
...
@@ -240,10 +240,10 @@ class DimShuffle(Op):
...
@@ -240,10 +240,10 @@ class DimShuffle(Op):
shape_statements
=
[
'npy_intp dimensions[
%
i]'
%
nd_out
]
shape_statements
=
[
'npy_intp dimensions[
%
i]'
%
nd_out
]
for
i
,
o
in
enumerate
(
self
.
new_order
):
for
i
,
o
in
enumerate
(
self
.
new_order
):
if
o
!=
'x'
:
if
o
!=
'x'
:
shape_statements
+=
[(
'dimensions['
+
str
(
i
)
+
'] =
%(basename)
s->dimensions['
+
str
(
o
)
+
']'
)]
shape_statements
+=
[(
'dimensions['
+
str
(
i
)
+
'] =
%(basename)
s->dimensions['
+
str
(
o
)
+
']'
)]
else
:
else
:
shape_statements
+=
[(
'dimensions['
+
str
(
i
)
+
'] = 1'
)]
shape_statements
+=
[(
'dimensions['
+
str
(
i
)
+
'] = 1'
)]
#backport
#backport
#shape_statements += [('dimensions['+str(i)+'] = %(basename)s->dimensions['+str(o)+']')
#shape_statements += [('dimensions['+str(i)+'] = %(basename)s->dimensions['+str(o)+']')
# if o != 'x' else
# if o != 'x' else
...
@@ -255,10 +255,10 @@ class DimShuffle(Op):
...
@@ -255,10 +255,10 @@ class DimShuffle(Op):
#set the strides of the non-broadcasted dimensions
#set the strides of the non-broadcasted dimensions
for
i
,
o
in
enumerate
(
self
.
new_order
):
for
i
,
o
in
enumerate
(
self
.
new_order
):
if
o
!=
'x'
:
if
o
!=
'x'
:
strides_statements
+=
[(
'strides['
+
str
(
i
)
+
'] =
%(basename)
s->strides['
+
str
(
o
)
+
']'
)]
strides_statements
+=
[(
'strides['
+
str
(
i
)
+
'] =
%(basename)
s->strides['
+
str
(
o
)
+
']'
)]
else
:
else
:
strides_statements
+=
[(
'strides['
+
str
(
i
)
+
'] = 0'
)]
strides_statements
+=
[(
'strides['
+
str
(
i
)
+
'] = 0'
)]
#backport
#backport
#strides_statements += [('strides['+str(i)+'] = %(basename)s->strides['+str(o)+']')
#strides_statements += [('strides['+str(i)+'] = %(basename)s->strides['+str(o)+']')
# if o != 'x' else
# if o != 'x' else
...
@@ -276,7 +276,7 @@ class DimShuffle(Op):
...
@@ -276,7 +276,7 @@ class DimShuffle(Op):
# npy_intp* strides, void* data, int itemsize, int flags, PyObject* obj)
# npy_intp* strides, void* data, int itemsize, int flags, PyObject* obj)
#
#
close_bracket
=
[
close_bracket
=
[
#create a new array,
#create a new array,
(
'
%(res)
s = (PyArrayObject*)PyArray_New(&PyArray_Type, '
(
'
%(res)
s = (PyArrayObject*)PyArray_New(&PyArray_Type, '
''
+
str
(
nd_out
)
+
', dimensions, '
''
+
str
(
nd_out
)
+
', dimensions, '
'PyArray_TYPE(
%(basename)
s), strides, '
'PyArray_TYPE(
%(basename)
s), strides, '
...
@@ -287,13 +287,13 @@ class DimShuffle(Op):
...
@@ -287,13 +287,13 @@ class DimShuffle(Op):
#recalculate flags: CONTIGUOUS, FORTRAN, ALIGNED
#recalculate flags: CONTIGUOUS, FORTRAN, ALIGNED
'PyArray_UpdateFlags(
%(res)
s, NPY_UPDATE_ALL)'
,
'PyArray_UpdateFlags(
%(res)
s, NPY_UPDATE_ALL)'
,
#we are making a view in both inplace and non-inplace cases
#we are making a view in both inplace and non-inplace cases
'
%(res)
s->base = (PyObject*)
%(basename)
s'
,
'
%(res)
s->base = (PyObject*)
%(basename)
s'
,
'}'
]
'}'
]
full_code
=
statements
(
check_input_nd
full_code
=
statements
(
check_input_nd
+
clear_output
+
clear_output
+
get_base
+
get_base
+
shape_statements
+
shape_statements
+
strides_statements
+
strides_statements
+
close_bracket
)
+
close_bracket
)
...
@@ -345,7 +345,7 @@ class DimShufflePrinter:
...
@@ -345,7 +345,7 @@ class DimShufflePrinter:
raise
TypeError
(
"Can only print DimShuffle."
)
raise
TypeError
(
"Can only print DimShuffle."
)
elif
isinstance
(
r
.
owner
.
op
,
DimShuffle
):
elif
isinstance
(
r
.
owner
.
op
,
DimShuffle
):
ord
=
r
.
owner
.
op
.
new_order
ord
=
r
.
owner
.
op
.
new_order
return
self
.
__p
(
ord
,
pstate
,
r
.
owner
.
inputs
[
0
])
return
self
.
__p
(
ord
,
pstate
,
r
.
owner
.
inputs
[
0
])
else
:
else
:
raise
TypeError
(
"Can only print DimShuffle."
)
raise
TypeError
(
"Can only print DimShuffle."
)
...
@@ -411,7 +411,7 @@ class Elemwise(Op):
...
@@ -411,7 +411,7 @@ class Elemwise(Op):
d
.
pop
(
'__epydoc_asRoutine'
,
None
)
d
.
pop
(
'__epydoc_asRoutine'
,
None
)
d
.
pop
(
'_hashval'
)
d
.
pop
(
'_hashval'
)
return
d
return
d
def
__setstate__
(
self
,
d
):
def
__setstate__
(
self
,
d
):
self
.
__dict__
.
update
(
d
)
self
.
__dict__
.
update
(
d
)
if
self
.
scalar_op
.
nin
>
0
:
if
self
.
scalar_op
.
nin
>
0
:
...
@@ -441,7 +441,7 @@ class Elemwise(Op):
...
@@ -441,7 +441,7 @@ class Elemwise(Op):
else
:
else
:
# TODO: use LComplete instead
# TODO: use LComplete instead
args
.
append
(
DimShuffle
(
args
.
append
(
DimShuffle
(
input
.
type
.
broadcastable
,
input
.
type
.
broadcastable
,
[
'x'
]
*
difference
+
range
(
length
),
[
'x'
]
*
difference
+
range
(
length
),
inplace
=
True
)(
input
))
inplace
=
True
)(
input
))
inputs
=
args
inputs
=
args
...
@@ -463,7 +463,7 @@ class Elemwise(Op):
...
@@ -463,7 +463,7 @@ class Elemwise(Op):
raise
ValueError
(
"Operation cannot be done inplace on an input with broadcasted dimensions."
)
raise
ValueError
(
"Operation cannot be done inplace on an input with broadcasted dimensions."
)
out_dtypes
=
[
o
.
type
.
dtype
for
o
in
shadow
.
outputs
]
out_dtypes
=
[
o
.
type
.
dtype
for
o
in
shadow
.
outputs
]
if
any
(
inputs
[
i
]
.
type
.
dtype
!=
out_dtypes
[
o
]
for
o
,
i
in
inplace_pattern
.
items
()):
if
any
(
inputs
[
i
]
.
type
.
dtype
!=
out_dtypes
[
o
]
for
o
,
i
in
inplace_pattern
.
items
()):
raise
TypeError
(
"Cannot do an inplace operation on incompatible data types."
,
raise
TypeError
(
"Cannot do an inplace operation on incompatible data types."
,
([
i
.
type
.
dtype
for
i
in
inputs
],
out_dtypes
,
inplace_pattern
))
([
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
)]
outputs
=
[
TensorType
(
dtype
=
dtype
,
broadcastable
=
broadcastable
)()
for
dtype
,
broadcastable
in
zip
(
out_dtypes
,
out_broadcastables
)]
return
Apply
(
self
,
inputs
,
outputs
)
return
Apply
(
self
,
inputs
,
outputs
)
...
@@ -484,10 +484,10 @@ class Elemwise(Op):
...
@@ -484,10 +484,10 @@ class Elemwise(Op):
first_part
=
[
k
for
k
,
v
in
items
]
first_part
=
[
k
for
k
,
v
in
items
]
second_part
=
[]
second_part
=
[]
for
k
,
v
in
items
:
for
k
,
v
in
items
:
if
isinstance
(
v
,
(
tuple
,
list
)):
if
isinstance
(
v
,
(
tuple
,
list
)):
second_part
+=
[
tuple
(
v
)]
second_part
+=
[
tuple
(
v
)]
else
:
else
:
second_part
+=
[
v
]
second_part
+=
[
v
]
tuple_items
=
tuple
(
first_part
+
second_part
)
tuple_items
=
tuple
(
first_part
+
second_part
)
#backport
#backport
#tuple_items = tuple([k for k,v in items] + [(tuple(v) if isinstance(v, (tuple, list)) else v) for k,v in items])
#tuple_items = tuple([k for k,v in items] + [(tuple(v) if isinstance(v, (tuple, list)) else v) for k,v in items])
...
@@ -511,7 +511,7 @@ class Elemwise(Op):
...
@@ -511,7 +511,7 @@ class Elemwise(Op):
def
grad
(
self
,
inputs
,
ograds
):
def
grad
(
self
,
inputs
,
ograds
):
# Gradients (especially on the final costs) don't have to be symbolic
# Gradients (especially on the final costs) don't have to be symbolic
ograds
=
map
(
as_tensor_variable
,
ograds
)
ograds
=
map
(
as_tensor_variable
,
ograds
)
scalar_inputs
=
[
Scalar
(
dtype
=
t
.
type
.
dtype
)()
for
t
in
inputs
]
scalar_inputs
=
[
Scalar
(
dtype
=
t
.
type
.
dtype
)()
for
t
in
inputs
]
scalar_ograds
=
[
Scalar
(
dtype
=
ograd
.
type
.
dtype
)()
for
ograd
in
ograds
]
scalar_ograds
=
[
Scalar
(
dtype
=
ograd
.
type
.
dtype
)()
for
ograd
in
ograds
]
scalar_igrads
=
self
.
scalar_op
.
grad
(
scalar_inputs
,
scalar_ograds
)
scalar_igrads
=
self
.
scalar_op
.
grad
(
scalar_inputs
,
scalar_ograds
)
...
@@ -575,7 +575,7 @@ class Elemwise(Op):
...
@@ -575,7 +575,7 @@ class Elemwise(Op):
msg2
=
[]
msg2
=
[]
for
d
,
b
in
zip
(
input
.
shape
,
sinput
.
type
.
broadcastable
):
for
d
,
b
in
zip
(
input
.
shape
,
sinput
.
type
.
broadcastable
):
if
b
:
if
b
:
msg2
+=
[
'*'
]
msg2
+=
[
'*'
]
else
:
else
:
msg2
+=
[
str
(
d
)]
msg2
+=
[
str
(
d
)]
msg
.
append
(
'(
%
s)'
%
", "
.
join
(
msg2
))
msg
.
append
(
'(
%
s)'
%
", "
.
join
(
msg2
))
...
@@ -616,7 +616,7 @@ class Elemwise(Op):
...
@@ -616,7 +616,7 @@ class Elemwise(Op):
# the first (faster) version leads to segfaults
# the first (faster) version leads to segfaults
ufunc_args
=
inputs
# + output_storage
ufunc_args
=
inputs
# + output_storage
ufunc
=
self
.
ufunc
or
numpy
.
frompyfunc
(
self
.
scalar_op
.
impl
,
len
(
inputs
),
self
.
scalar_op
.
nout
)
ufunc
=
self
.
ufunc
or
numpy
.
frompyfunc
(
self
.
scalar_op
.
impl
,
len
(
inputs
),
self
.
scalar_op
.
nout
)
try
:
try
:
variables
=
ufunc
(
*
ufunc_args
)
variables
=
ufunc
(
*
ufunc_args
)
except
Exception
,
e
:
except
Exception
,
e
:
...
@@ -655,7 +655,7 @@ class Elemwise(Op):
...
@@ -655,7 +655,7 @@ class Elemwise(Op):
# b_dim might still be None, if every input's shape was unknown in dimension 'dim'
# b_dim might still be None, if every input's shape was unknown in dimension 'dim'
oshp
.
append
(
b_dim
)
oshp
.
append
(
b_dim
)
# TODO: it would be interesting to return the constraining information that if
# TODO: it would be interesting to return the constraining information that if
# one of the inputs shape[dim] is known and another input's shape[dim] is not,
# one of the inputs shape[dim] is known and another input's shape[dim] is not,
# that we can now assume that the other input's shape[dim] is the same as the
# that we can now assume that the other input's shape[dim] is the same as the
# first.
# first.
rval
.
append
(
tuple
(
oshp
))
rval
.
append
(
tuple
(
oshp
))
...
@@ -899,7 +899,7 @@ class CAReduce(Op):
...
@@ -899,7 +899,7 @@ class CAReduce(Op):
assert
len
(
axis
)
==
len
(
axis2
)
assert
len
(
axis
)
==
len
(
axis2
)
axis
=
tuple
(
axis2
)
axis
=
tuple
(
axis2
)
op
=
self
.
__class__
(
self
.
scalar_op
,
axis
)
op
=
self
.
__class__
(
self
.
scalar_op
,
axis
)
else
:
else
:
op
=
self
op
=
self
output
=
TensorType
(
dtype
=
self
.
_output_dtype
(
input
.
type
.
dtype
),
output
=
TensorType
(
dtype
=
self
.
_output_dtype
(
input
.
type
.
dtype
),
broadcastable
=
[
x
for
i
,
x
in
enumerate
(
input
.
type
.
broadcastable
)
if
i
not
in
axis
])()
broadcastable
=
[
x
for
i
,
x
in
enumerate
(
input
.
type
.
broadcastable
)
if
i
not
in
axis
])()
...
@@ -910,7 +910,7 @@ class CAReduce(Op):
...
@@ -910,7 +910,7 @@ class CAReduce(Op):
d
=
copy
(
self
.
__dict__
)
d
=
copy
(
self
.
__dict__
)
d
.
pop
(
'ufunc'
)
d
.
pop
(
'ufunc'
)
return
d
return
d
def
__setstate__
(
self
,
d
):
def
__setstate__
(
self
,
d
):
self
.
__dict__
.
update
(
d
)
self
.
__dict__
.
update
(
d
)
self
.
ufunc
=
numpy
.
frompyfunc
(
self
.
scalar_op
.
impl
,
2
,
1
)
self
.
ufunc
=
numpy
.
frompyfunc
(
self
.
scalar_op
.
impl
,
2
,
1
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论