Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
594bbcb1
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
594bbcb1
编写于
3月 22, 2021
作者:
Z
zhang wenhui
提交者:
GitHub
3月 22, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
【NPU】Fix reshape test & add grad test (#31776)
* fix * fix
上级
fba994c2
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
77 addition
and
0 deletion
+77
-0
python/paddle/fluid/tests/unittests/npu/test_reshape2_op_npu.py
.../paddle/fluid/tests/unittests/npu/test_reshape2_op_npu.py
+77
-0
未找到文件。
python/paddle/fluid/tests/unittests/npu/test_reshape_op_npu.py
→
python/paddle/fluid/tests/unittests/npu/test_reshape
2
_op_npu.py
浏览文件 @
594bbcb1
...
@@ -46,95 +46,31 @@ class TestReshape2(OpTest):
...
@@ -46,95 +46,31 @@ class TestReshape2(OpTest):
self
.
__class__
.
use_npu
=
True
self
.
__class__
.
use_npu
=
True
def
init_data
(
self
):
def
init_data
(
self
):
self
.
ori_shape
=
(
2
,
6
0
)
self
.
ori_shape
=
(
2
,
10
0
)
self
.
new_shape
=
(
12
,
10
)
self
.
new_shape
=
(
20
,
10
)
self
.
infered_shape
=
(
12
,
10
)
self
.
infered_shape
=
(
20
,
10
)
def
test_check_output
(
self
):
def
test_check_output
(
self
):
self
.
check_output
(
self
.
check_output
_with_place
(
self
.
place
,
check_dygraph
=
False
,
no_check_set
=
[
'XShape'
])
self
.
place
,
check_dygraph
=
False
,
no_check_set
=
[
'XShape'
])
def
test_check_grad_normal
(
self
):
self
.
check_grad_with_place
(
self
.
place
,
[
'X'
],
'Out'
,
check_dygraph
=
False
)
class
TestReshape2_case2
(
TestReshape2
):
class
TestReshape2_case2
(
TestReshape2
):
def
init_data
(
self
):
def
init_data
(
self
):
self
.
ori_shape
=
(
2
,
6
0
)
self
.
ori_shape
=
(
2
,
10
0
)
self
.
new_shape
=
(
-
1
,
10
)
self
.
new_shape
=
(
-
1
,
10
)
self
.
infered_shape
=
(
12
,
10
)
self
.
infered_shape
=
(
20
,
10
)
class
TestReshape2_case3
(
TestReshape2
):
class
TestReshape2_case3
(
TestReshape2
):
def
init_data
(
self
):
def
init_data
(
self
):
self
.
ori_shape
=
(
2
,
5
,
6
)
self
.
ori_shape
=
(
100
,
5
,
6
)
self
.
new_shape
=
(
-
1
,
0
,
3
)
self
.
new_shape
=
(
-
1
,
0
,
3
)
self
.
infered_shape
=
(
4
,
5
,
3
)
self
.
infered_shape
=
(
200
,
5
,
3
)
# TODO(ascendrc): Add grad test
# def test_check_grad(self):
# if self.dtype == np.float16:
# return
# self.check_grad(['X'], 'Out')
#
@
unittest
.
skipIf
(
not
paddle
.
is_compiled_with_npu
(),
"core is not compiled with NPU"
)
class
TestReshapeNet
(
unittest
.
TestCase
):
def
_test
(
self
,
run_npu
=
True
):
main_prog
=
paddle
.
static
.
Program
()
startup_prog
=
paddle
.
static
.
Program
()
main_prog
.
random_seed
=
SEED
startup_prog
.
random_seed
=
SEED
np
.
random
.
seed
(
SEED
)
a_np
=
np
.
random
.
random
(
size
=
(
32
,
32
)).
astype
(
'float32'
)
b_np
=
np
.
random
.
random
(
size
=
(
32
,
32
)).
astype
(
'float32'
)
label_np
=
np
.
random
.
randint
(
2
,
size
=
(
32
,
1
)).
astype
(
'int64'
)
with
paddle
.
static
.
program_guard
(
main_prog
,
startup_prog
):
a
=
paddle
.
static
.
data
(
name
=
"a"
,
shape
=
[
32
,
32
],
dtype
=
'float32'
)
b
=
paddle
.
static
.
data
(
name
=
"b"
,
shape
=
[
32
,
32
],
dtype
=
'float32'
)
label
=
paddle
.
static
.
data
(
name
=
"label"
,
shape
=
[
32
,
1
],
dtype
=
'int64'
)
sum
=
paddle
.
add
(
a
,
b
)
z
=
paddle
.
reshape
(
sum
,
shape
=
[
32
,
32
])
fc_1
=
fluid
.
layers
.
fc
(
input
=
z
,
size
=
128
)
prediction
=
fluid
.
layers
.
fc
(
input
=
fc_1
,
size
=
2
,
act
=
'softmax'
)
cost
=
fluid
.
layers
.
cross_entropy
(
input
=
prediction
,
label
=
label
)
loss
=
fluid
.
layers
.
reduce_mean
(
cost
)
sgd
=
fluid
.
optimizer
.
SGD
(
learning_rate
=
0.01
)
sgd
.
minimize
(
loss
)
if
run_npu
:
place
=
paddle
.
NPUPlace
(
0
)
else
:
place
=
paddle
.
CPUPlace
()
exe
=
paddle
.
static
.
Executor
(
place
)
exe
.
run
(
startup_prog
)
print
(
"Start run on {}"
.
format
(
place
))
for
epoch
in
range
(
100
):
pred_res
,
loss_res
=
exe
.
run
(
main_prog
,
feed
=
{
"a"
:
a_np
,
"b"
:
b_np
,
"label"
:
label_np
},
fetch_list
=
[
prediction
,
loss
])
if
epoch
%
10
==
0
:
print
(
"Epoch {} | Prediction[0]: {}, Loss: {}"
.
format
(
epoch
,
pred_res
[
0
],
loss_res
))
return
pred_res
,
loss_res
def
test_npu
(
self
):
cpu_pred
,
cpu_loss
=
self
.
_test
(
False
)
npu_pred
,
npu_loss
=
self
.
_test
(
True
)
self
.
assertTrue
(
np
.
allclose
(
npu_pred
,
cpu_pred
))
self
.
assertTrue
(
np
.
allclose
(
npu_loss
,
cpu_loss
))
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录