Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
cf07b78f
提交
cf07b78f
authored
4月 11, 2008
作者:
Olivier Breuleux
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
to merge
上级
46551c37
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
177 行增加
和
49 行删除
+177
-49
_test_tensor.py
_test_tensor.py
+177
-49
没有找到文件。
_test_tensor.py
浏览文件 @
cf07b78f
...
@@ -150,54 +150,178 @@ def randint_notzero(*shape):
...
@@ -150,54 +150,178 @@ def randint_notzero(*shape):
r
=
numpy
.
random
.
random_integers
(
-
10
,
9
,
shape
)
r
=
numpy
.
random
.
random_integers
(
-
10
,
9
,
shape
)
return
r
+
(
r
==
0
)
*
10
return
r
+
(
r
==
0
)
*
10
randplus
=
numpy
.
random
.
rand
# randplus = numpy.random.rand
# randintplus =
# def banzero(f):
# def f2(*shape):
# res = f(*shape)
# while numpy.any(res == 0):
# res = f(*shape)
# return res
# return f2
# def banneg(f):
# def f2(*shape):
# res = f(*shape)
# while numpy.any(res < 0):
# res = f(*shape)
# return res
# return f2
def
make_broadcast_tester
(
op_class
,
expected
,
checks
=
{},
**
kwargs
):
_randint
=
randint
_rand
=
rand
if
kwargs
.
has_key
(
'nonzero'
):
if
kwargs
[
'nonzero'
]:
_randint
=
banzero
(
_randint
)
_rand
=
banzero
(
_rand
)
del
kwargs
[
'nonzero'
]
if
kwargs
.
has_key
(
'positive'
):
if
kwargs
[
'positive'
]:
_randint
=
banneg
(
_randint
)
_rand
=
banneg
(
_rand
)
del
kwargs
[
'positive'
]
_good_broadcast
=
dict
(
same_shapes
=
(
_rand
(
2
,
3
),
_rand
(
2
,
3
)),
scalar
=
(
_rand
(
2
,
3
),
_rand
(
1
,
1
)),
row
=
(
_rand
(
2
,
3
),
_rand
(
1
,
3
)),
column
=
(
_rand
(
2
,
3
),
_rand
(
2
,
1
)),
integers
=
(
_randint
(
2
,
3
),
_randint
(
2
,
3
)),
dtype_mixup_1
=
(
_rand
(
2
,
3
),
_randint
(
2
,
3
)),
dtype_mixup_2
=
(
_randint
(
2
,
3
),
_rand
(
2
,
3
)))
_bad_build_broadcast
=
dict
(
not_same_dimensions
=
(
_rand
(
2
),
_rand
(
2
,
2
)))
_bad_runtime_broadcast
=
dict
(
bad_shapes
=
(
_rand
(
2
,
3
),
_rand
(
3
,
2
)),
bad_row
=
(
_rand
(
2
,
3
),
_rand
(
1
,
2
)))
_grad_broadcast
=
dict
(
same_shapes
=
(
_rand
(
2
,
3
),
_rand
(
2
,
3
)),
scalar
=
(
_rand
(
2
,
3
),
_rand
(
1
,
1
)),
row
=
(
_rand
(
2
,
3
),
_rand
(
1
,
3
)),
column
=
(
_rand
(
2
,
3
),
_rand
(
2
,
1
)))
kwargs
.
setdefault
(
'good'
,
_good_broadcast
)
kwargs
.
setdefault
(
'bad_build'
,
_bad_build_broadcast
)
_good_broadcast
=
dict
(
same_shapes
=
(
rand
(
2
,
3
),
rand
(
2
,
3
)),
kwargs
.
setdefault
(
'bad_runtime'
,
_bad_runtime_broadcast
)
scalar
=
(
rand
(
2
,
3
),
rand
(
1
,
1
)),
kwargs
.
setdefault
(
'grad'
,
_grad_broadcast
)
row
=
(
rand
(
2
,
3
),
rand
(
1
,
3
)),
name
=
op_class
.
__name__
+
"Tester"
column
=
(
rand
(
2
,
3
),
rand
(
2
,
1
)),
if
kwargs
.
has_key
(
'inplace'
):
integers
=
(
randint
(
2
,
3
),
randint
(
2
,
3
)),
if
kwargs
[
'inplace'
]:
dtype_mixup
=
(
rand
(
2
,
3
),
randint
(
2
,
3
)))
_expected
=
expected
expected
=
lambda
*
inputs
:
numpy
.
array
(
_expected
(
*
inputs
),
dtype
=
inputs
[
0
]
.
dtype
)
_bad_build_broadcast
=
dict
(
not_same_dimensions
=
(
rand
(
2
),
rand
(
2
,
2
)))
checks
=
dict
(
checks
,
inplace_check
=
lambda
inputs
,
outputs
:
inputs
[
0
]
is
outputs
[
0
])
_bad_runtime_broadcast
=
dict
(
not_same_dimensions
=
(
rand
(
2
),
rand
(
2
,
2
)))
del
kwargs
[
'inplace'
]
return
make_tester
(
name
,
op_class
,
expected
,
checks
,
**
kwargs
)
_grad_broadcast
=
_good_broadcast
# AddTester = make_broadcast_tester(op_class = Add,
# expected = lambda x, y: x + y,
# grad = {})
AddTester
=
make_tester
(
name
=
'AddTester'
,
# AddInplaceTester = make_broadcast_tester(op_class = AddInplace,
op_class
=
Add
,
# expected = lambda x, y: x + y,
expected
=
lambda
x
,
y
:
x
+
y
,
# inplace = True,
checks
=
{},
# grad = {})
good
=
dict
(
same_shapes
=
(
rand
(
5
,
6
),
rand
(
5
,
6
)),
scalar
=
(
rand
(
5
,
6
),
rand
(
1
,
1
)),
# SubTester = make_broadcast_tester(op_class = Sub,
row
=
(
rand
(
5
,
6
),
rand
(
1
,
6
)),
# expected = lambda x, y: x - y)
column
=
(
rand
(
5
,
6
),
rand
(
5
,
1
)),
# SubInplaceTester = make_broadcast_tester(op_class = SubInplace,
integers
=
(
randint
(
5
,
6
),
randint
(
5
,
6
)),
# expected = lambda x, y: x - y,
dtype_mixup
=
(
rand
(
5
,
6
),
randint
(
5
,
6
))),
# inplace = True)
bad_build
=
dict
(
not_same_dimensions
=
(
rand
(
5
),
rand
(
5
,
5
))),
bad_runtime
=
dict
(
bad_shapes
=
(
rand
(
5
,
6
),
rand
(
6
,
5
)),
# MulTester = make_broadcast_tester(op_class = Mul,
bad_row
=
(
rand
(
5
,
6
),
rand
(
1
,
5
))),
# expected = lambda x, y: x * y)
grad
=
{})
# MulInplaceTester = make_broadcast_tester(op_class = MulInplace,
# expected = lambda x, y: x * y,
AddInplaceTester
=
make_tester
(
name
=
'AddInplaceTester'
,
# inplace = True)
op_class
=
AddInplace
,
expected
=
lambda
x
,
y
:
numpy
.
array
(
x
+
y
,
dtype
=
x
.
dtype
),
# DivTester = make_broadcast_tester(op_class = Div,
checks
=
dict
(
inplace_check
=
lambda
(
x
,
y
),
(
z
,
):
x
is
z
),
# expected = lambda x, y: x / y,
good
=
dict
(
same_shapes
=
(
rand
(
5
,
6
),
rand
(
5
,
6
)),
# nonzero = True,
dtype_mixup
=
(
randint
(
5
,
6
),
rand
(
5
,
6
))),
# positive = True)
bad_build
=
dict
(
not_same_dimensions
=
(
rand
(
5
),
rand
(
5
,
5
))),
# DivInplaceTester = make_broadcast_tester(op_class = DivInplace,
bad_runtime
=
dict
(
bad_shapes
=
(
rand
(
5
,
6
),
rand
(
6
,
5
)),
# expected = lambda x, y: x / y,
bad_row
=
(
rand
(
5
,
6
),
rand
(
1
,
5
))),
# inplace = True,
grad
=
{})
# nonzero = True,
# positive = True)
# _pow_good = dict(normal = ()
# _pow_grad =
# PowTester = make_broadcast_tester(op_class = Pow,
# expected = lambda x, y: x ** y,
# good = _pow_good)
# PowInplaceTester = make_broadcast_tester(op_class = PowInplace,
# expected = lambda x, y: x ** y,
# good = _pow_good)
# AbsTester = make_broadcast_tester(op_class = Abs,
# expected = lambda x: abs(x))
# AbsInplaceTester = make_broadcast_tester(op_class = AbsInplace,
# expected = lambda x: abs(x),
# inplace = True)
# ExpTester = make_broadcast_tester(op_class = Exp,
# expected = lambda x: numpy.exp(x))
# ExpInplaceTester = make_broadcast_tester(op_class = ExpInplace,
# expected = lambda x: numpy.exp(x),
# inplace = True)
# Abs, _abs, AbsInplace, abs_inplace = broadcast(scal.Abs, 'Abs')
# Exp, exp, ExpInplace, exp_inplace = broadcast(scal.Exp, 'Exp')
# Neg, neg, NegInplace, neg_inplace = broadcast(scal.Neg, 'Neg')
# Log, log, LogInplace, log_inplace = broadcast(scal.Log, 'Log')
# Log2, log2, Log2Inplace, log2_inplace = broadcast(scal.Log2, 'Log2')
# Sgn, sgn, SgnInplace, sgn_inplace = broadcast(scal.Sgn, 'Sgn')
# Sqr, sqr, SqrInplace, sqr_inplace = broadcast(scal.Sqr, 'Sqr')
# Sqrt, sqrt, SqrtInplace, sqrt_inplace = broadcast(scal.Sqrt, 'Sqrt')
# AddTester = make_broadcast_tester(op_class = Add,
# expected = lambda x, y: x + y,
# checks = {},
# grad = {})
# AddInplaceTester = make_broadcast_tester(op_class = AddInplace,
# expected = lambda x, y: numpy.array(x + y, dtype = x.dtype),
# checks = dict(inplace_check = lambda (x, y), (z, ): x is z),
# grad = {})
# AddTester = make_tester(name = 'AddTester',
# op_class = Add,
# expected = lambda x, y: x + y,
# checks = {},
# good = dict(same_shapes = (rand(5, 6), rand(5, 6)),
# scalar = (rand(5, 6), rand(1, 1)),
# row = (rand(5, 6), rand(1, 6)),
# column = (rand(5, 6), rand(5, 1)),
# integers = (randint(5, 6), randint(5, 6)),
# dtype_mixup = (rand(5, 6), randint(5, 6))),
# bad_build = dict(not_same_dimensions = (rand(5), rand(5, 5))),
# bad_runtime = dict(bad_shapes = (rand(5, 6), rand(6, 5)),
# bad_row = (rand(5, 6), rand(1, 5))),
# grad = {})
# AddInplaceTester = make_tester(name = 'AddInplaceTester',
# op_class = AddInplace,
# expected = lambda x, y: numpy.array(x + y, dtype = x.dtype),
# checks = dict(inplace_check = lambda (x, y), (z, ): x is z),
# good = dict(same_shapes = (rand(5, 6), rand(5, 6)),
# dtype_mixup = (randint(5, 6), rand(5, 6))),
# bad_build = dict(not_same_dimensions = (rand(5), rand(5, 5))),
# bad_runtime = dict(bad_shapes = (rand(5, 6), rand(6, 5)),
# bad_row = (rand(5, 6), rand(1, 5))),
# grad = {})
DotTester
=
make_tester
(
name
=
'DotTester'
,
DotTester
=
make_tester
(
name
=
'DotTester'
,
op_class
=
Dot
,
op_class
=
Dot
,
...
@@ -221,7 +345,7 @@ def verify_grad(testcase, op_cls, pt, n_tests=1, rng=numpy.random, eps=0.0000001
...
@@ -221,7 +345,7 @@ def verify_grad(testcase, op_cls, pt, n_tests=1, rng=numpy.random, eps=0.0000001
for
test_num
in
xrange
(
n_tests
):
for
test_num
in
xrange
(
n_tests
):
tensor_pt
=
[
astensor
(
p
,
name
=
'input
%
i'
%
i
)
for
i
,
p
in
enumerate
(
pt
)]
tensor_pt
=
[
astensor
(
p
,
name
=
'input
%
i'
%
i
)
for
i
,
p
in
enumerate
(
pt
)]
o
=
op_cls
(
*
tensor_pt
)
o
=
op_cls
(
*
[
tpt
.
copy
()
for
tpt
in
tensor_pt
]
)
if
hasattr
(
o
,
'outputs'
):
if
hasattr
(
o
,
'outputs'
):
o_outputs
=
o
.
outputs
o_outputs
=
o
.
outputs
else
:
else
:
...
@@ -249,7 +373,11 @@ def verify_grad(testcase, op_cls, pt, n_tests=1, rng=numpy.random, eps=0.0000001
...
@@ -249,7 +373,11 @@ def verify_grad(testcase, op_cls, pt, n_tests=1, rng=numpy.random, eps=0.0000001
print
'----------'
print
'----------'
for
op
in
gof
.
graph
.
io_toposort
(
tensor_pt
,
symbolic_grad
):
for
op
in
gof
.
graph
.
io_toposort
(
tensor_pt
,
symbolic_grad
):
print
op
print
op
grad_fn
=
Function
(
tensor_pt
,
symbolic_grad
)
try
:
grad_fn
=
Function
(
tensor_pt
,
symbolic_grad
)
except
:
print
gof
.
graph
.
as_string
(
tensor_pt
,
symbolic_grad
)
raise
analytic_grad
=
grad_fn
(
*
pt
)
analytic_grad
=
grad_fn
(
*
pt
)
if
not
isinstance
(
analytic_grad
,
(
list
,
tuple
)):
if
not
isinstance
(
analytic_grad
,
(
list
,
tuple
)):
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论