Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
a7014f09
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
a7014f09
编写于
12月 12, 2022
作者:
姜
姜永久
提交者:
GitHub
12月 13, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rm unittests eager guard tests part6 eager_run2expand_v2 (#48817)
上级
08524758
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
165 addition
and
241 deletion
+165
-241
python/paddle/fluid/tests/unittests/test_eager_run_program.py
...on/paddle/fluid/tests/unittests/test_eager_run_program.py
+48
-63
python/paddle/fluid/tests/unittests/test_eager_trace_op.py
python/paddle/fluid/tests/unittests/test_eager_trace_op.py
+17
-19
python/paddle/fluid/tests/unittests/test_egr_code_generate_api.py
...addle/fluid/tests/unittests/test_egr_code_generate_api.py
+33
-38
python/paddle/fluid/tests/unittests/test_egr_string_tensor_api.py
...addle/fluid/tests/unittests/test_egr_string_tensor_api.py
+61
-70
python/paddle/fluid/tests/unittests/test_elementwise_add_op.py
...n/paddle/fluid/tests/unittests/test_elementwise_add_op.py
+2
-12
python/paddle/fluid/tests/unittests/test_elementwise_div_op.py
...n/paddle/fluid/tests/unittests/test_elementwise_div_op.py
+1
-6
python/paddle/fluid/tests/unittests/test_elementwise_mul_op.py
...n/paddle/fluid/tests/unittests/test_elementwise_mul_op.py
+1
-6
python/paddle/fluid/tests/unittests/test_elementwise_sub_op.py
...n/paddle/fluid/tests/unittests/test_elementwise_sub_op.py
+2
-12
python/paddle/fluid/tests/unittests/test_expand_v2_op.py
python/paddle/fluid/tests/unittests/test_expand_v2_op.py
+0
-15
未找到文件。
python/paddle/fluid/tests/unittests/test_eager_run_program.py
浏览文件 @
a7014f09
...
...
@@ -24,11 +24,7 @@ from paddle.fluid.executor import (
_is_dy2st_enable_standalone_executor
,
_is_enable_standalone_executor
,
)
from
paddle.fluid.framework
import
(
Variable
,
_in_legacy_dygraph
,
_test_eager_guard
,
)
from
paddle.fluid.framework
import
Variable
,
_in_legacy_dygraph
from
paddle.fluid.layers.utils
import
_hash_with_id
...
...
@@ -124,68 +120,57 @@ class TestRunProgram(unittest.TestCase):
paddle
.
disable_static
(
'cpu'
)
# step 2: call run_program in eager mode
with
_test_eager_guard
():
x_t
=
paddle
.
ones
([
2
,
4
])
x_t
.
name
=
"x"
x_t
.
stop_gradient
=
False
y_t
=
paddle
.
ones
([
4
,
2
])
y_t
.
name
=
"y"
y_t
.
stop_gradient
=
False
fake_var
=
paddle
.
zeros
([
1
])
fake_var
.
name
=
'Fake_var'
out_t
=
_create_out
(
out
)
scope
=
core
.
Scope
()
attrs
=
[
'global_block'
,
program
.
desc
.
block
(
0
),
'start_op_index'
,
0
,
'end_op_index'
,
main_program
.
desc
.
block
(
0
).
op_size
(),
'is_test'
,
False
,
'program_id'
,
_hash_with_id
(
program
),
]
use_interpretorcore
=
(
_is_enable_standalone_executor
()
and
_is_dy2st_enable_standalone_executor
()
)
attrs
.
extend
((
'use_interpretorcore'
,
use_interpretorcore
))
if
use_interpretorcore
:
attrs
.
extend
(
(
'forward_global_block'
,
forward_program
.
desc
.
block
(
0
),
'backward_global_block'
,
backward_program
.
desc
.
block
(
0
),
)
)
x_t
=
paddle
.
ones
([
2
,
4
])
x_t
.
name
=
"x"
x_t
.
stop_gradient
=
False
y_t
=
paddle
.
ones
([
4
,
2
])
y_t
.
name
=
"y"
y_t
.
stop_gradient
=
False
fake_var
=
paddle
.
zeros
([
1
])
fake_var
.
name
=
'Fake_var'
out_t
=
_create_out
(
out
)
scope
=
core
.
Scope
()
attrs
=
[
'global_block'
,
program
.
desc
.
block
(
0
),
'start_op_index'
,
0
,
'end_op_index'
,
main_program
.
desc
.
block
(
0
).
op_size
(),
'is_test'
,
False
,
'program_id'
,
_hash_with_id
(
program
),
]
_legacy_C_ops
.
run_program
(
[
x_t
,
y_t
],
[
fake_var
],
[
out_t
],
[
scope
],
[
fake_var
],
None
,
*
attrs
use_interpretorcore
=
(
_is_enable_standalone_executor
()
and
_is_dy2st_enable_standalone_executor
()
)
attrs
.
extend
((
'use_interpretorcore'
,
use_interpretorcore
))
if
use_interpretorcore
:
attrs
.
extend
(
(
'forward_global_block'
,
forward_program
.
desc
.
block
(
0
),
'backward_global_block'
,
backward_program
.
desc
.
block
(
0
),
)
)
loss
=
paddle
.
mean
(
out_t
)
loss
.
backward
()
_legacy_C_ops
.
run_program
(
[
x_t
,
y_t
],
[
fake_var
],
[
out_t
],
[
scope
],
[
fake_var
],
None
,
*
attrs
)
np
.
testing
.
assert_array_equal
(
np
.
ones
([
2
,
2
])
*
4
,
out_t
.
numpy
())
np
.
testing
.
assert_array_equal
(
np
.
ones
([
2
,
4
])
*
0.5
,
x_t
.
grad
.
numpy
()
)
np
.
testing
.
assert_array_equal
(
np
.
ones
([
4
,
2
])
*
0.5
,
y_t
.
grad
.
numpy
()
)
loss
=
paddle
.
mean
(
out_t
)
loss
.
backward
()
np
.
testing
.
assert_array_equal
(
np
.
ones
([
2
,
2
])
*
4
,
out_t
.
numpy
())
np
.
testing
.
assert_array_equal
(
np
.
ones
([
2
,
4
])
*
0.5
,
x_t
.
grad
.
numpy
())
np
.
testing
.
assert_array_equal
(
np
.
ones
([
4
,
2
])
*
0.5
,
y_t
.
grad
.
numpy
())
if
__name__
==
'__main__'
:
...
...
python/paddle/fluid/tests/unittests/test_eager_trace_op.py
浏览文件 @
a7014f09
...
...
@@ -17,29 +17,27 @@ import unittest
import
numpy
as
np
import
paddle
from
paddle.fluid.framework
import
_test_eager_guard
class
TestEagerTraceOp
(
unittest
.
TestCase
):
def
test_branches
(
self
):
with
_test_eager_guard
():
data
=
np
.
random
.
random
([
1
,
1
]).
astype
(
np
.
float32
)
x
=
paddle
.
to_tensor
(
data
)
paddle
.
fluid
.
framework
.
_dygraph_tracer
().
trace_op
(
'broadcast_tensors'
,
{
'X'
:
[
x
,
x
],
'Out'
:
[
x
,
x
]},
{
'Out'
:
[
x
,
x
]},
{},
)
paddle
.
fluid
.
framework
.
_dygraph_tracer
().
trace_op
(
'scale'
,
{
'X'
:
x
},
{
'Out'
:
x
},
{
'scale'
:
0.5
}
)
scale
=
paddle
.
to_tensor
(
np
.
random
.
random
([
1
]).
astype
(
np
.
float32
))
paddle
.
fluid
.
framework
.
_dygraph_tracer
().
trace_op
(
'instance_norm'
,
{
'Scale'
:
[
scale
],
'X'
:
[
x
]},
{
'Y'
:
[
x
]},
{}
)
data
=
np
.
random
.
random
([
1
,
1
]).
astype
(
np
.
float32
)
x
=
paddle
.
to_tensor
(
data
)
paddle
.
fluid
.
framework
.
_dygraph_tracer
().
trace_op
(
'broadcast_tensors'
,
{
'X'
:
[
x
,
x
],
'Out'
:
[
x
,
x
]},
{
'Out'
:
[
x
,
x
]},
{},
)
paddle
.
fluid
.
framework
.
_dygraph_tracer
().
trace_op
(
'scale'
,
{
'X'
:
x
},
{
'Out'
:
x
},
{
'scale'
:
0.5
}
)
scale
=
paddle
.
to_tensor
(
np
.
random
.
random
([
1
]).
astype
(
np
.
float32
))
paddle
.
fluid
.
framework
.
_dygraph_tracer
().
trace_op
(
'instance_norm'
,
{
'Scale'
:
[
scale
],
'X'
:
[
x
]},
{
'Y'
:
[
x
]},
{}
)
if
__name__
==
"__main__"
:
...
...
python/paddle/fluid/tests/unittests/test_egr_code_generate_api.py
浏览文件 @
a7014f09
...
...
@@ -17,55 +17,50 @@ import unittest
import
numpy
as
np
import
paddle
from
paddle.fluid.framework
import
_test_eager_guard
class
EagerOpAPIGenerateTestCase
(
unittest
.
TestCase
):
def
test_elementwise_add
(
self
):
with
_test_eager_guard
():
paddle
.
set_device
(
"cpu"
)
np_x
=
np
.
ones
([
4
,
16
,
16
,
32
]).
astype
(
'float32'
)
np_y
=
np
.
ones
([
4
,
16
,
16
,
32
]).
astype
(
'float32'
)
x
=
paddle
.
to_tensor
(
np_x
)
y
=
paddle
.
to_tensor
(
np_y
)
out
=
paddle
.
add
(
x
,
y
)
out_arr
=
out
.
numpy
()
paddle
.
set_device
(
"cpu"
)
np_x
=
np
.
ones
([
4
,
16
,
16
,
32
]).
astype
(
'float32'
)
np_y
=
np
.
ones
([
4
,
16
,
16
,
32
]).
astype
(
'float32'
)
x
=
paddle
.
to_tensor
(
np_x
)
y
=
paddle
.
to_tensor
(
np_y
)
out
=
paddle
.
add
(
x
,
y
)
out_arr
=
out
.
numpy
()
out_arr_expected
=
np
.
add
(
np_x
,
np_y
)
np
.
testing
.
assert_array_equal
(
out_arr
,
out_arr_expected
)
out_arr_expected
=
np
.
add
(
np_x
,
np_y
)
np
.
testing
.
assert_array_equal
(
out_arr
,
out_arr_expected
)
def
test_sum
(
self
):
with
_test_eager_guard
():
x_data
=
np
.
array
(
[[
0.2
,
0.3
,
0.5
,
0.9
],
[
0.1
,
0.2
,
0.6
,
0.7
]]
).
astype
(
'float32'
)
x
=
paddle
.
to_tensor
(
x_data
,
'float32'
)
out
=
paddle
.
sum
(
x
,
axis
=
0
)
out_arr
=
out
.
numpy
()
out_arr_expected
=
np
.
sum
(
x_data
,
axis
=
0
)
np
.
testing
.
assert_array_equal
(
out_arr
,
out_arr_expected
)
x_data
=
np
.
array
([[
0.2
,
0.3
,
0.5
,
0.9
],
[
0.1
,
0.2
,
0.6
,
0.7
]]).
astype
(
'float32'
)
x
=
paddle
.
to_tensor
(
x_data
,
'float32'
)
out
=
paddle
.
sum
(
x
,
axis
=
0
)
out_arr
=
out
.
numpy
()
out_arr_expected
=
np
.
sum
(
x_data
,
axis
=
0
)
np
.
testing
.
assert_array_equal
(
out_arr
,
out_arr_expected
)
def
test_mm
(
self
):
with
_test_eager_guard
():
np_input
=
np
.
random
.
random
([
16
,
32
]).
astype
(
'float32'
)
np_mat2
=
np
.
random
.
random
([
32
,
32
]).
astype
(
'float32'
)
input
=
paddle
.
to_tensor
(
np_input
)
mat2
=
paddle
.
to_tensor
(
np_mat2
)
out
=
paddle
.
mm
(
input
,
mat2
)
out_arr
=
out
.
numpy
()
out_arr_expected
=
np
.
matmul
(
np_input
,
np_mat2
)
np
.
testing
.
assert_allclose
(
out_arr
,
out_arr_expected
,
rtol
=
1e-05
)
np_input
=
np
.
random
.
random
([
16
,
32
]).
astype
(
'float32'
)
np_mat2
=
np
.
random
.
random
([
32
,
32
]).
astype
(
'float32'
)
input
=
paddle
.
to_tensor
(
np_input
)
mat2
=
paddle
.
to_tensor
(
np_mat2
)
out
=
paddle
.
mm
(
input
,
mat2
)
out_arr
=
out
.
numpy
()
out_arr_expected
=
np
.
matmul
(
np_input
,
np_mat2
)
np
.
testing
.
assert_allclose
(
out_arr
,
out_arr_expected
,
rtol
=
1e-05
)
def
test_sigmoid
(
self
):
with
_test_eager_guard
():
np_x
=
np
.
array
([
-
0.4
,
-
0.2
,
0.1
,
0.3
]).
astype
(
'float32'
)
x
=
paddle
.
to_tensor
(
np_x
)
out
=
paddle
.
nn
.
functional
.
sigmoid
(
x
)
out_arr
=
out
.
numpy
()
out_arr_expected
=
np
.
array
(
[
0.40131234
,
0.450166
,
0.52497919
,
0.57444252
]
).
astype
(
'float32'
)
np
.
testing
.
assert_allclose
(
out_arr
,
out_arr_expected
,
rtol
=
1e-05
)
np_x
=
np
.
array
([
-
0.4
,
-
0.2
,
0.1
,
0.3
]).
astype
(
'float32'
)
x
=
paddle
.
to_tensor
(
np_x
)
out
=
paddle
.
nn
.
functional
.
sigmoid
(
x
)
out_arr
=
out
.
numpy
()
out_arr_expected
=
np
.
array
(
[
0.40131234
,
0.450166
,
0.52497919
,
0.57444252
]
).
astype
(
'float32'
)
np
.
testing
.
assert_allclose
(
out_arr
,
out_arr_expected
,
rtol
=
1e-05
)
if
__name__
==
"__main__"
:
...
...
python/paddle/fluid/tests/unittests/test_egr_string_tensor_api.py
浏览文件 @
a7014f09
...
...
@@ -17,7 +17,6 @@ import unittest
import
numpy
as
np
import
paddle.fluid.core
as
core
from
paddle.fluid.framework
import
_test_eager_guard
class
EagerStringTensorTestCase
(
unittest
.
TestCase
):
...
...
@@ -32,77 +31,69 @@ class EagerStringTensorTestCase(unittest.TestCase):
)
# From IMDB
def
test_constructor_with_args
(
self
):
with
_test_eager_guard
():
ST1
=
core
.
eager
.
StringTensor
()
# constructor 1
self
.
assertEqual
(
ST1
.
name
,
"generated_string_tensor_0"
)
self
.
assertEqual
(
ST1
.
shape
,
[])
self
.
assertEqual
(
ST1
.
numpy
(),
''
)
shape
=
[
2
,
3
]
ST2
=
core
.
eager
.
StringTensor
(
shape
,
"ST2"
)
# constructor 2
self
.
assertEqual
(
ST2
.
name
,
"ST2"
)
self
.
assertEqual
(
ST2
.
shape
,
shape
)
np
.
testing
.
assert_array_equal
(
ST2
.
numpy
(),
np
.
empty
(
shape
,
dtype
=
np
.
unicode_
)
)
ST3
=
core
.
eager
.
StringTensor
(
self
.
str_arr
,
"ST3"
)
# constructor 3
self
.
assertEqual
(
ST3
.
name
,
"ST3"
)
self
.
assertEqual
(
ST3
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST3
.
numpy
(),
self
.
str_arr
)
ST4
=
core
.
eager
.
StringTensor
(
self
.
str_arr
)
# constructor 4
self
.
assertEqual
(
ST4
.
name
,
"generated_string_tensor_1"
)
self
.
assertEqual
(
ST4
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST4
.
numpy
(),
self
.
str_arr
)
ST5
=
core
.
eager
.
StringTensor
(
ST4
)
# constructor 5
self
.
assertEqual
(
ST5
.
name
,
"generated_string_tensor_2"
)
self
.
assertEqual
(
ST5
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST5
.
numpy
(),
self
.
str_arr
)
ST6
=
core
.
eager
.
StringTensor
(
ST5
,
"ST6"
)
# constructor 6
self
.
assertEqual
(
ST6
.
name
,
"ST6"
)
self
.
assertEqual
(
ST6
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST6
.
numpy
(),
self
.
str_arr
)
for
st
in
[
ST1
,
ST2
,
ST3
,
ST4
,
ST5
,
ST6
]:
# All StringTensors are on cpu place so far.
self
.
assertTrue
(
st
.
place
.
_equals
(
core
.
CPUPlace
()))
ST1
=
core
.
eager
.
StringTensor
()
# constructor 1
self
.
assertEqual
(
ST1
.
name
,
"generated_string_tensor_0"
)
self
.
assertEqual
(
ST1
.
shape
,
[])
self
.
assertEqual
(
ST1
.
numpy
(),
''
)
shape
=
[
2
,
3
]
ST2
=
core
.
eager
.
StringTensor
(
shape
,
"ST2"
)
# constructor 2
self
.
assertEqual
(
ST2
.
name
,
"ST2"
)
self
.
assertEqual
(
ST2
.
shape
,
shape
)
np
.
testing
.
assert_array_equal
(
ST2
.
numpy
(),
np
.
empty
(
shape
,
dtype
=
np
.
unicode_
)
)
ST3
=
core
.
eager
.
StringTensor
(
self
.
str_arr
,
"ST3"
)
# constructor 3
self
.
assertEqual
(
ST3
.
name
,
"ST3"
)
self
.
assertEqual
(
ST3
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST3
.
numpy
(),
self
.
str_arr
)
ST4
=
core
.
eager
.
StringTensor
(
self
.
str_arr
)
# constructor 4
self
.
assertEqual
(
ST4
.
name
,
"generated_string_tensor_1"
)
self
.
assertEqual
(
ST4
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST4
.
numpy
(),
self
.
str_arr
)
ST5
=
core
.
eager
.
StringTensor
(
ST4
)
# constructor 5
self
.
assertEqual
(
ST5
.
name
,
"generated_string_tensor_2"
)
self
.
assertEqual
(
ST5
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST5
.
numpy
(),
self
.
str_arr
)
ST6
=
core
.
eager
.
StringTensor
(
ST5
,
"ST6"
)
# constructor 6
self
.
assertEqual
(
ST6
.
name
,
"ST6"
)
self
.
assertEqual
(
ST6
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST6
.
numpy
(),
self
.
str_arr
)
for
st
in
[
ST1
,
ST2
,
ST3
,
ST4
,
ST5
,
ST6
]:
# All StringTensors are on cpu place so far.
self
.
assertTrue
(
st
.
place
.
_equals
(
core
.
CPUPlace
()))
def
test_constructor_with_kwargs
(
self
):
with
_test_eager_guard
():
shape
=
[
2
,
3
]
ST1
=
core
.
eager
.
StringTensor
(
dims
=
shape
,
name
=
"ST1"
)
# constructor 2
self
.
assertEqual
(
ST1
.
name
,
"ST1"
)
self
.
assertEqual
(
ST1
.
shape
,
shape
)
np
.
testing
.
assert_array_equal
(
ST1
.
numpy
(),
np
.
empty
(
shape
,
dtype
=
np
.
unicode_
)
)
ST2
=
core
.
eager
.
StringTensor
(
self
.
str_arr
,
name
=
"ST2"
)
# constructor 3
self
.
assertEqual
(
ST2
.
name
,
"ST2"
)
self
.
assertEqual
(
ST2
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST2
.
numpy
(),
self
.
str_arr
)
ST3
=
core
.
eager
.
StringTensor
(
ST2
,
name
=
"ST3"
)
# constructor 6
self
.
assertEqual
(
ST3
.
name
,
"ST3"
)
self
.
assertEqual
(
ST3
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST3
.
numpy
(),
self
.
str_arr
)
ST4
=
core
.
eager
.
StringTensor
(
value
=
ST2
,
name
=
"ST4"
)
# constructor 6
self
.
assertEqual
(
ST4
.
name
,
"ST4"
)
self
.
assertEqual
(
ST4
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST4
.
numpy
(),
self
.
str_arr
)
for
st
in
[
ST1
,
ST2
,
ST3
,
ST4
]:
# All StringTensors are on cpu place so far.
self
.
assertTrue
(
st
.
place
.
_equals
(
core
.
CPUPlace
()))
shape
=
[
2
,
3
]
ST1
=
core
.
eager
.
StringTensor
(
dims
=
shape
,
name
=
"ST1"
)
# constructor 2
self
.
assertEqual
(
ST1
.
name
,
"ST1"
)
self
.
assertEqual
(
ST1
.
shape
,
shape
)
np
.
testing
.
assert_array_equal
(
ST1
.
numpy
(),
np
.
empty
(
shape
,
dtype
=
np
.
unicode_
)
)
ST2
=
core
.
eager
.
StringTensor
(
self
.
str_arr
,
name
=
"ST2"
)
# constructor 3
self
.
assertEqual
(
ST2
.
name
,
"ST2"
)
self
.
assertEqual
(
ST2
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST2
.
numpy
(),
self
.
str_arr
)
ST3
=
core
.
eager
.
StringTensor
(
ST2
,
name
=
"ST3"
)
# constructor 6
self
.
assertEqual
(
ST3
.
name
,
"ST3"
)
self
.
assertEqual
(
ST3
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST3
.
numpy
(),
self
.
str_arr
)
ST4
=
core
.
eager
.
StringTensor
(
value
=
ST2
,
name
=
"ST4"
)
# constructor 6
self
.
assertEqual
(
ST4
.
name
,
"ST4"
)
self
.
assertEqual
(
ST4
.
shape
,
list
(
self
.
str_arr
.
shape
))
np
.
testing
.
assert_array_equal
(
ST4
.
numpy
(),
self
.
str_arr
)
for
st
in
[
ST1
,
ST2
,
ST3
,
ST4
]:
# All StringTensors are on cpu place so far.
self
.
assertTrue
(
st
.
place
.
_equals
(
core
.
CPUPlace
()))
if
__name__
==
"__main__"
:
...
...
python/paddle/fluid/tests/unittests/test_elementwise_add_op.py
浏览文件 @
a7014f09
...
...
@@ -19,7 +19,6 @@ import numpy as np
import
paddle
import
paddle.fluid
as
fluid
import
paddle.fluid.core
as
core
from
paddle.fluid.framework
import
_test_eager_guard
from
paddle.fluid.tests.unittests.op_test
import
(
OpTest
,
convert_float_to_uint16
,
...
...
@@ -684,7 +683,7 @@ class TestBoolAddFloatElementwiseAddop(unittest.TestCase):
self
.
assertTrue
(
c
.
dtype
==
core
.
VarDesc
.
VarType
.
FP32
)
paddle
.
enable_static
()
def
func
_dygraph_add
(
self
):
def
test
_dygraph_add
(
self
):
paddle
.
disable_static
()
a
=
1.5
b
=
paddle
.
full
([
2
],
True
,
dtype
=
'bool'
)
...
...
@@ -715,14 +714,9 @@ class TestBoolAddFloatElementwiseAddop(unittest.TestCase):
paddle
.
enable_static
()
def
test_dygraph_add
(
self
):
with
_test_eager_guard
():
self
.
func_dygraph_add
()
self
.
func_dygraph_add
()
class
TestElementwiseAddop1
(
unittest
.
TestCase
):
def
func
_dygraph_add
(
self
):
def
test
_dygraph_add
(
self
):
paddle
.
disable_static
()
np_a
=
np
.
random
.
random
((
2
,
3
,
4
)).
astype
(
np
.
float32
)
...
...
@@ -742,10 +736,6 @@ class TestElementwiseAddop1(unittest.TestCase):
paddle
.
enable_static
()
def
test_dygraph_add
(
self
):
with
_test_eager_guard
():
self
.
func_dygraph_add
()
if
__name__
==
'__main__'
:
paddle
.
enable_static
()
...
...
python/paddle/fluid/tests/unittests/test_elementwise_div_op.py
浏览文件 @
a7014f09
...
...
@@ -20,7 +20,6 @@ from op_test import OpTest, convert_float_to_uint16, skip_check_grad_ci
import
paddle
from
paddle
import
fluid
from
paddle.fluid
import
core
from
paddle.fluid.framework
import
_test_eager_guard
class
ElementwiseDivOp
(
OpTest
):
...
...
@@ -440,7 +439,7 @@ class TestRealComplexElementwiseDivOp(TestComplexElementwiseDivOp):
class
TestElementwiseDivop
(
unittest
.
TestCase
):
def
func
_dygraph_div
(
self
):
def
test
_dygraph_div
(
self
):
paddle
.
disable_static
()
np_a
=
np
.
random
.
random
((
2
,
3
,
4
)).
astype
(
np
.
float32
)
...
...
@@ -462,10 +461,6 @@ class TestElementwiseDivop(unittest.TestCase):
paddle
.
enable_static
()
def
test_dygraph_div
(
self
):
with
_test_eager_guard
():
self
.
func_dygraph_div
()
if
__name__
==
'__main__'
:
paddle
.
enable_static
()
...
...
python/paddle/fluid/tests/unittests/test_elementwise_mul_op.py
浏览文件 @
a7014f09
...
...
@@ -18,7 +18,6 @@ import numpy as np
import
paddle
import
paddle.fluid.core
as
core
from
paddle.fluid.framework
import
_test_eager_guard
from
paddle.fluid.tests.unittests.op_test
import
(
OpTest
,
convert_float_to_uint16
,
...
...
@@ -367,7 +366,7 @@ class TestRealComplexElementwiseMulOp(TestComplexElementwiseMulOp):
class
TestElementwiseMulop
(
unittest
.
TestCase
):
def
func
_dygraph_mul
(
self
):
def
test
_dygraph_mul
(
self
):
paddle
.
disable_static
()
np_a
=
np
.
random
.
random
((
2
,
3
,
4
)).
astype
(
np
.
float32
)
...
...
@@ -387,10 +386,6 @@ class TestElementwiseMulop(unittest.TestCase):
paddle
.
enable_static
()
def
test_dygraph_mul
(
self
):
with
_test_eager_guard
():
self
.
func_dygraph_mul
()
if
__name__
==
'__main__'
:
paddle
.
enable_static
()
...
...
python/paddle/fluid/tests/unittests/test_elementwise_sub_op.py
浏览文件 @
a7014f09
...
...
@@ -19,7 +19,6 @@ from op_test import OpTest, convert_float_to_uint16, skip_check_grad_ci
import
paddle
import
paddle.fluid
as
fluid
from
paddle.fluid.framework
import
_test_eager_guard
class
TestElementwiseOp
(
OpTest
):
...
...
@@ -414,7 +413,7 @@ class TestSubtractInplaceBroadcastError3(TestSubtractInplaceBroadcastError):
class
TestFloatElementwiseSubop
(
unittest
.
TestCase
):
def
func
_dygraph_sub
(
self
):
def
test
_dygraph_sub
(
self
):
paddle
.
disable_static
()
np_a
=
np
.
random
.
random
((
2
,
3
,
4
)).
astype
(
np
.
float64
)
...
...
@@ -446,14 +445,9 @@ class TestFloatElementwiseSubop(unittest.TestCase):
paddle
.
enable_static
()
def
test_dygraph_sub
(
self
):
with
_test_eager_guard
():
self
.
func_dygraph_sub
()
self
.
func_dygraph_sub
()
class
TestFloatElementwiseSubop1
(
unittest
.
TestCase
):
def
func
_dygraph_sub
(
self
):
def
test
_dygraph_sub
(
self
):
paddle
.
disable_static
()
np_a
=
np
.
random
.
random
((
2
,
3
,
4
)).
astype
(
np
.
float32
)
...
...
@@ -477,10 +471,6 @@ class TestFloatElementwiseSubop1(unittest.TestCase):
paddle
.
enable_static
()
def
test_dygraph_sub
(
self
):
with
_test_eager_guard
():
self
.
func_dygraph_sub
()
if
__name__
==
'__main__'
:
paddle
.
enable_static
()
...
...
python/paddle/fluid/tests/unittests/test_expand_v2_op.py
浏览文件 @
a7014f09
...
...
@@ -23,7 +23,6 @@ import paddle
import
paddle.fluid
as
fluid
import
paddle.fluid.layers
as
layers
from
paddle.fluid
import
Program
,
core
,
program_guard
from
paddle.fluid.framework
import
_test_eager_guard
# Situation 1: shape is a list(without tensor)
...
...
@@ -256,26 +255,12 @@ class TestExpandInferShape(unittest.TestCase):
class
TestExpandV2DygraphAPI
(
unittest
.
TestCase
):
def
test_expand_times_is_tensor
(
self
):
with
paddle
.
fluid
.
dygraph
.
guard
():
with
_test_eager_guard
():
paddle
.
seed
(
1
)
a
=
paddle
.
rand
([
2
,
5
])
egr_expand_1
=
paddle
.
expand
(
a
,
shape
=
[
2
,
5
])
np_array
=
np
.
array
([
2
,
5
])
egr_expand_2
=
paddle
.
expand
(
a
,
shape
=
np_array
)
paddle
.
seed
(
1
)
a
=
paddle
.
rand
([
2
,
5
])
expand_1
=
paddle
.
expand
(
a
,
shape
=
[
2
,
5
])
np_array
=
np
.
array
([
2
,
5
])
expand_2
=
paddle
.
expand
(
a
,
shape
=
np_array
)
np
.
testing
.
assert_array_equal
(
egr_expand_1
.
numpy
(),
egr_expand_2
.
numpy
()
)
np
.
testing
.
assert_array_equal
(
expand_1
.
numpy
(),
expand_2
.
numpy
())
np
.
testing
.
assert_array_equal
(
expand_1
.
numpy
(),
egr_expand_1
.
numpy
()
)
class
TestExpandDoubleGradCheck
(
unittest
.
TestCase
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录