Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
2164ad61
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
2164ad61
编写于
8月 13, 2021
作者:
A
andyjpaddle
提交者:
GitHub
8月 13, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[npu]add unsqueeze2_grad,test=develop (#34733)
上级
3f71e8d2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
157 addition
and
0 deletion
+157
-0
paddle/fluid/operators/unsqueeze_op_npu.cc
paddle/fluid/operators/unsqueeze_op_npu.cc
+16
-0
python/paddle/fluid/tests/unittests/npu/test_unsqueeze_op_npu.py
...paddle/fluid/tests/unittests/npu/test_unsqueeze_op_npu.py
+141
-0
未找到文件。
paddle/fluid/operators/unsqueeze_op_npu.cc
浏览文件 @
2164ad61
...
...
@@ -38,4 +38,20 @@ REGISTER_OP_NPU_KERNEL(
ops
::
UnsqueezeKernel
<
plat
::
NPUDeviceContext
,
int
>
,
ops
::
UnsqueezeKernel
<
plat
::
NPUDeviceContext
,
int8_t
>
,
ops
::
UnsqueezeKernel
<
plat
::
NPUDeviceContext
,
int64_t
>
);
REGISTER_OP_NPU_KERNEL
(
unsqueeze_grad
,
ops
::
UnsqueezeGradKernel
<
plat
::
NPUDeviceContext
,
float
>
,
ops
::
UnsqueezeGradKernel
<
plat
::
NPUDeviceContext
,
double
>
,
ops
::
UnsqueezeGradKernel
<
plat
::
NPUDeviceContext
,
plat
::
float16
>
,
ops
::
UnsqueezeGradKernel
<
plat
::
NPUDeviceContext
,
bool
>
,
ops
::
UnsqueezeGradKernel
<
plat
::
NPUDeviceContext
,
int
>
,
ops
::
UnsqueezeGradKernel
<
plat
::
NPUDeviceContext
,
int8_t
>
,
ops
::
UnsqueezeGradKernel
<
plat
::
NPUDeviceContext
,
int64_t
>
);
REGISTER_OP_NPU_KERNEL
(
unsqueeze2_grad
,
ops
::
Unsqueeze2GradKernel
<
plat
::
NPUDeviceContext
,
float
>
,
ops
::
Unsqueeze2GradKernel
<
plat
::
NPUDeviceContext
,
double
>
,
ops
::
Unsqueeze2GradKernel
<
plat
::
NPUDeviceContext
,
plat
::
float16
>
,
ops
::
Unsqueeze2GradKernel
<
plat
::
NPUDeviceContext
,
bool
>
,
ops
::
Unsqueeze2GradKernel
<
plat
::
NPUDeviceContext
,
int
>
,
ops
::
Unsqueeze2GradKernel
<
plat
::
NPUDeviceContext
,
int8_t
>
,
ops
::
Unsqueeze2GradKernel
<
plat
::
NPUDeviceContext
,
int64_t
>
);
#endif
python/paddle/fluid/tests/unittests/npu/test_unsqueeze_op_npu.py
0 → 100644
浏览文件 @
2164ad61
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
__future__
import
print_function
import
numpy
as
np
import
unittest
import
sys
sys
.
path
.
append
(
".."
)
from
op_test
import
OpTest
import
paddle
import
paddle.fluid
as
fluid
import
paddle.fluid.core
as
core
from
paddle.fluid
import
Program
,
program_guard
paddle
.
enable_static
()
# unsqueeze
class
TestUnsqueezeOp
(
OpTest
):
def
setUp
(
self
):
self
.
set_npu
()
self
.
op_type
=
"unsqueeze"
self
.
place
=
paddle
.
NPUPlace
(
0
)
self
.
init_test_case
()
self
.
x
=
np
.
random
.
random
(
self
.
ori_shape
).
astype
(
"float32"
)
self
.
inputs
=
{
"X"
:
OpTest
.
np_dtype_to_fluid_dtype
(
self
.
x
)}
self
.
init_attrs
()
self
.
outputs
=
{
"Out"
:
self
.
x
.
reshape
(
self
.
new_shape
),
}
def
set_npu
(
self
):
self
.
__class__
.
use_npu
=
True
def
test_check_output
(
self
):
self
.
check_output_with_place
(
self
.
place
)
def
test_check_grad
(
self
):
self
.
check_grad_with_place
(
self
.
place
,
[
"X"
],
"Out"
)
def
init_test_case
(
self
):
self
.
ori_shape
=
(
3
,
40
)
self
.
axes
=
(
0
,
2
)
self
.
new_shape
=
(
1
,
3
,
1
,
40
)
def
init_attrs
(
self
):
self
.
attrs
=
{
"axes"
:
self
.
axes
}
class
TestUnsqueezeOp1
(
TestUnsqueezeOp
):
def
init_test_case
(
self
):
self
.
ori_shape
=
(
3
,
40
)
self
.
axes
=
(
0
,
-
2
)
self
.
new_shape
=
(
1
,
3
,
1
,
40
)
# No axes input.
class
TestUnsqueezeOp2
(
TestUnsqueezeOp
):
def
init_test_case
(
self
):
self
.
ori_shape
=
(
20
,
5
)
self
.
axes
=
()
self
.
new_shape
=
(
1
,
20
,
5
)
# Just part of axes be squeezed.
class
TestUnsqueezeOp3
(
TestUnsqueezeOp
):
def
init_test_case
(
self
):
self
.
ori_shape
=
(
6
,
5
,
1
,
4
)
self
.
axes
=
(
1
,
-
1
)
self
.
new_shape
=
(
6
,
1
,
5
,
1
,
4
,
1
)
# unsqueeze 2
class
TestUnsqueeze2Op
(
OpTest
):
def
setUp
(
self
):
self
.
set_npu
()
self
.
op_type
=
"unsqueeze2"
self
.
place
=
paddle
.
NPUPlace
(
0
)
self
.
init_test_case
()
self
.
x
=
np
.
random
.
random
(
self
.
ori_shape
).
astype
(
"float32"
)
self
.
inputs
=
{
"X"
:
OpTest
.
np_dtype_to_fluid_dtype
(
self
.
x
)}
self
.
init_attrs
()
self
.
outputs
=
{
"Out"
:
self
.
x
.
reshape
(
self
.
new_shape
),
"XShape"
:
np
.
random
.
random
(
self
.
ori_shape
).
astype
(
"float32"
)
}
def
set_npu
(
self
):
self
.
__class__
.
use_npu
=
True
def
test_check_output
(
self
):
self
.
check_output_with_place
(
self
.
place
,
no_check_set
=
[
'XShape'
])
def
test_check_grad
(
self
):
self
.
check_grad_with_place
(
self
.
place
,
[
"X"
],
"Out"
)
def
init_test_case
(
self
):
self
.
ori_shape
=
(
3
,
40
)
self
.
axes
=
(
0
,
2
)
self
.
new_shape
=
(
1
,
3
,
1
,
40
)
def
init_attrs
(
self
):
self
.
attrs
=
{
"axes"
:
self
.
axes
}
# Correct: There is mins axis.
class
TestUnsqueeze2Op1
(
TestUnsqueeze2Op
):
def
init_test_case
(
self
):
self
.
ori_shape
=
(
20
,
5
)
self
.
axes
=
(
0
,
-
2
)
self
.
new_shape
=
(
1
,
20
,
1
,
5
)
# Correct: No axes input.
class
TestUnsqueeze2Op2
(
TestUnsqueeze2Op
):
def
init_test_case
(
self
):
self
.
ori_shape
=
(
20
,
5
)
self
.
axes
=
()
self
.
new_shape
=
(
1
,
20
,
5
)
# Correct: Just part of axes be squeezed.
class
TestUnsqueeze2Op3
(
TestUnsqueeze2Op
):
def
init_test_case
(
self
):
self
.
ori_shape
=
(
6
,
5
,
1
,
4
)
self
.
axes
=
(
1
,
-
1
)
self
.
new_shape
=
(
6
,
1
,
5
,
1
,
4
,
1
)
if
__name__
==
"__main__"
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录