Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
e674af23
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
e674af23
编写于
2月 18, 2022
作者:
B
baoachun
提交者:
GitHub
2月 18, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor the forward implementation of shape npu op (#39613)
上级
c5179772
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
36 addition
and
17 deletion
+36
-17
paddle/fluid/operators/shape_op_npu.cc
paddle/fluid/operators/shape_op_npu.cc
+16
-17
python/paddle/fluid/tests/unittests/npu/test_shape_op_npu.py
python/paddle/fluid/tests/unittests/npu/test_shape_op_npu.py
+20
-0
未找到文件。
paddle/fluid/operators/shape_op_npu.cc
浏览文件 @
e674af23
/* Copyright (c) 202
1
PaddlePaddle Authors. All Rights Reserved.
/* Copyright (c) 202
2
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.
...
...
@@ -12,9 +12,6 @@ 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. */
#include <memory>
#include <string>
#include "paddle/fluid/operators/shape_op.h"
#include "paddle/fluid/platform/device/npu/npu_op_runner.h"
...
...
@@ -27,20 +24,20 @@ template <typename DeviceContext, typename T>
class
ShapeNPUKernel
:
public
framework
::
OpKernel
<
T
>
{
public:
void
Compute
(
const
framework
::
ExecutionContext
&
ctx
)
const
override
{
auto
*
in_var
=
ctx
.
InputVar
(
"Input"
);
framework
::
DDim
in_dims
;
if
(
in_var
->
IsType
<
pten
::
SelectedRows
>
())
{
in_dims
=
in_var
->
Get
<
pten
::
SelectedRows
>
().
value
().
dims
();
}
else
{
in_dims
=
in_var
->
Get
<
LoDTensor
>
().
dims
();
}
auto
*
x
=
ctx
.
Input
<
Tensor
>
(
"Input"
);
auto
*
out_t
=
ctx
.
Output
<
Tensor
>
(
"Out"
);
out_t
->
Resize
({
in_dims
.
size
()});
// to do: cpuplace?
auto
out_data
=
out_t
->
mutable_data
<
int32_t
>
(
platform
::
CPUPlace
());
for
(
int
i
=
0
;
i
<
in_dims
.
size
();
++
i
)
{
out_data
[
i
]
=
in_dims
[
i
];
}
out_t
->
Resize
({
x
->
dims
().
size
()});
out_t
->
mutable_data
<
int32_t
>
(
ctx
.
GetPlace
());
// The output data type defaults to int32.
auto
stream
=
ctx
.
template
device_context
<
paddle
::
platform
::
NPUDeviceContext
>()
.
stream
();
NpuOpRunner
runner
;
auto
dst_dtype
=
ConvertToNpuDtype
(
framework
::
proto
::
VarType
::
INT32
);
runner
.
SetType
(
"Shape"
).
AddInput
(
*
x
).
AddOutput
(
*
out_t
).
AddAttr
(
"dtype"
,
static_cast
<
int
>
(
dst_dtype
));
runner
.
Run
(
stream
);
}
};
...
...
@@ -55,5 +52,7 @@ REGISTER_OP_NPU_KERNEL(
ops
::
ShapeNPUKernel
<
paddle
::
platform
::
NPUDeviceContext
,
int8_t
>
,
ops
::
ShapeNPUKernel
<
paddle
::
platform
::
NPUDeviceContext
,
uint8_t
>
,
ops
::
ShapeNPUKernel
<
paddle
::
platform
::
NPUDeviceContext
,
int64_t
>
,
ops
::
ShapeNPUKernel
<
paddle
::
platform
::
NPUDeviceContext
,
paddle
::
platform
::
float16
>
,
ops
::
ShapeNPUKernel
<
paddle
::
platform
::
NPUDeviceContext
,
float
>
,
ops
::
ShapeNPUKernel
<
paddle
::
platform
::
NPUDeviceContext
,
double
>
);
python/paddle/fluid/tests/unittests/npu/test_shape_op_npu.py
浏览文件 @
e674af23
...
...
@@ -51,5 +51,25 @@ class TestShape(OpTest):
self
.
check_output_with_place
(
self
.
place
)
class
TestShape_fp16
(
TestShape
):
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float16
class
TestShape_double
(
TestShape
):
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float64
class
TestShape_int32
(
TestShape
):
def
init_dtype
(
self
):
self
.
dtype
=
np
.
int32
class
TestShape_int64
(
TestShape
):
def
init_dtype
(
self
):
self
.
dtype
=
np
.
int64
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录