Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
833aa8a7
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
833aa8a7
编写于
12月 07, 2019
作者:
Z
zhupengyang
提交者:
GitHub
12月 07, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[NPU] add unsqueeze op bridge and unit test (#2570)
test=develop
上级
cf31b835
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
208 addition
and
0 deletion
+208
-0
lite/kernels/npu/bridges/CMakeLists.txt
lite/kernels/npu/bridges/CMakeLists.txt
+3
-0
lite/kernels/npu/bridges/paddle_use_npu_bridges.h
lite/kernels/npu/bridges/paddle_use_npu_bridges.h
+2
-0
lite/kernels/npu/bridges/unsqueeze_op.cc
lite/kernels/npu/bridges/unsqueeze_op.cc
+64
-0
lite/kernels/npu/bridges/unsqueeze_op_test.cc
lite/kernels/npu/bridges/unsqueeze_op_test.cc
+139
-0
未找到文件。
lite/kernels/npu/bridges/CMakeLists.txt
浏览文件 @
833aa8a7
...
...
@@ -22,6 +22,7 @@ lite_cc_library(npu_bridge_pad2d_op SRCS pad2d_op.cc DEPS ${npu_bridge_deps})
lite_cc_library
(
npu_bridge_square_op SRCS square_op.cc DEPS
${
npu_bridge_deps
}
)
lite_cc_library
(
npu_bridge_sqrt_op SRCS sqrt_op.cc DEPS
${
npu_bridge_deps
}
)
lite_cc_library
(
npu_bridge_reduce_mean_op SRCS reduce_mean_op.cc DEPS
${
npu_bridge_deps
}
)
lite_cc_library
(
npu_bridge_unsqueeze_op SRCS unsqueeze_op.cc DEPS
${
npu_bridge_deps
}
)
set
(
npu_bridges
npu_bridge_registry
...
...
@@ -45,6 +46,7 @@ set(npu_bridges
npu_bridge_square_op
npu_bridge_sqrt_op
npu_bridge_reduce_mean_op
npu_bridge_unsqueeze_op
CACHE INTERNAL
"npu_bridges"
)
set
(
npu_bridge_test_deps
${
npu_bridges
}
${
npu_kernels
}
${
ops
}
)
...
...
@@ -69,5 +71,6 @@ lite_cc_test(test_npu_bridge_pad2d_op SRCS pad2d_op_test.cc test_helper.cc DEPS
lite_cc_test
(
test_npu_bridge_square_op SRCS square_op_test.cc test_helper.cc DEPS
${
npu_bridge_test_deps
}
)
lite_cc_test
(
test_npu_bridge_sqrt_op SRCS sqrt_op_test.cc test_helper.cc DEPS
${
npu_bridge_test_deps
}
)
lite_cc_test
(
test_npu_bridge_reduce_mean_op SRCS reduce_mean_op_test.cc test_helper.cc DEPS
${
npu_bridge_test_deps
}
)
lite_cc_test
(
test_npu_bridge_unsqueeze_op SRCS unsqueeze_op_test.cc test_helper.cc DEPS
${
npu_bridge_test_deps
}
)
message
(
STATUS
"+++++ npu_bridges:
${
npu_bridges
}
"
)
lite/kernels/npu/bridges/paddle_use_npu_bridges.h
浏览文件 @
833aa8a7
...
...
@@ -53,3 +53,5 @@ USE_NPU_BRIDGE(sqrt);
USE_NPU_BRIDGE
(
square
);
USE_NPU_BRIDGE
(
transpose
);
USE_NPU_BRIDGE
(
transpose2
);
USE_NPU_BRIDGE
(
unsqueeze
);
USE_NPU_BRIDGE
(
unsqueeze2
);
lite/kernels/npu/bridges/unsqueeze_op.cc
0 → 100644
浏览文件 @
833aa8a7
// Copyright (c) 2019 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.
#include "lite/backends/npu/builder.h"
#include "lite/kernels/npu/bridges/registry.h"
namespace
paddle
{
namespace
lite
{
namespace
kernels
{
namespace
npu
{
namespace
bridges
{
node_map_type
UnsqueezeConverter
(
const
std
::
shared_ptr
<
lite
::
OpLite
>
unsqueeze_op
,
const
node_map_type
&
inputs_map
)
{
auto
scope
=
unsqueeze_op
->
scope
();
auto
op_info
=
unsqueeze_op
->
op_info
();
auto
op_type
=
op_info
->
Type
();
auto
unique_op_type
=
lite
::
npu
::
UniqueName
(
op_type
);
LOG
(
INFO
)
<<
"[NPU] Converting "
+
op_type
+
"..."
;
std
::
shared_ptr
<
ge
::
op
::
Reshape
>
unsqueeze_node
=
std
::
make_shared
<
ge
::
op
::
Reshape
>
(
unique_op_type
);
auto
x_var_name
=
op_info
->
Input
(
"X"
).
front
();
CHECK
(
inputs_map
.
count
(
x_var_name
));
unsqueeze_node
->
set_input_tensor
(
*
inputs_map
.
at
(
x_var_name
));
lite
::
npu
::
OpList
::
Global
().
add
(
inputs_map
.
at
(
x_var_name
));
lite
::
npu
::
OpList
::
Global
().
add
(
unsqueeze_node
);
CHECK
(
op_info
->
HasAttr
(
"axes"
))
<<
"[NPU] unsqueeze not support axes from tensor now"
;
auto
out_var_name
=
op_info
->
Output
(
"Out"
).
front
();
auto
out_shape
=
scope
->
FindTensor
(
out_var_name
)
->
dims
().
Vectorize
();
unsqueeze_node
->
set_attr_shape
(
ge
::
AttrValue
::
LIST_INT
(
out_shape
.
begin
(),
out_shape
.
end
()));
node_map_type
outputs_map
;
outputs_map
[
op_info
->
Output
(
"Out"
).
front
()]
=
unsqueeze_node
;
return
outputs_map
;
}
}
// namespace bridges
}
// namespace npu
}
// namespace kernels
}
// namespace lite
}
// namespace paddle
REGISTER_NPU_BRIDGE
(
unsqueeze
,
paddle
::
lite
::
kernels
::
npu
::
bridges
::
UnsqueezeConverter
);
REGISTER_NPU_BRIDGE
(
unsqueeze2
,
paddle
::
lite
::
kernels
::
npu
::
bridges
::
UnsqueezeConverter
);
lite/kernels/npu/bridges/unsqueeze_op_test.cc
0 → 100644
浏览文件 @
833aa8a7
// Copyright (c) 2019 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.
#include "lite/operators/unsqueeze_op.h"
#include <gtest/gtest.h>
#include <cmath>
#include "lite/core/op_registry.h"
#include "lite/kernels/npu/bridges/registry.h"
#include "lite/kernels/npu/bridges/test_helper.h"
namespace
paddle
{
namespace
lite
{
namespace
kernels
{
namespace
npu
{
namespace
bridges
{
static
DDim
GetOutputShape
(
const
std
::
vector
<
int
>&
unsqz_dims
,
const
DDim
&
in_dims
)
{
int
output_size
=
in_dims
.
size
()
+
static_cast
<
int
>
(
unsqz_dims
.
size
());
int
cur_output_size
=
in_dims
.
size
();
std
::
vector
<
int64_t
>
output_shape
(
output_size
,
0
);
// Validate Check: rank range.
CHECK_LE
(
output_size
,
6
)
<<
"The output tensor's rank should be less than 6."
;
for
(
int
axis
:
unsqz_dims
)
{
int
cur
=
axis
<
0
?
axis
+
cur_output_size
+
1
:
axis
;
// Validate Check: the axis bound
CHECK
((
cur
>=
0
)
&&
(
cur
<=
cur_output_size
))
<<
"The unsqueeze dims must be within range of current rank."
;
// Move old axis, and insert new axis
for
(
int
i
=
cur_output_size
;
i
>=
cur
;
--
i
)
{
if
(
output_shape
[
i
]
==
1
)
{
// Move axis
output_shape
[
i
+
1
]
=
1
;
output_shape
[
i
]
=
0
;
}
}
output_shape
[
cur
]
=
1
;
// Add the output size.
cur_output_size
++
;
}
// Make output shape
for
(
int
in_idx
=
0
,
out_idx
=
0
;
out_idx
<
output_size
;
++
out_idx
)
{
if
(
output_shape
[
out_idx
]
==
0
)
{
output_shape
[
out_idx
]
=
in_dims
[
in_idx
++
];
}
}
return
DDim
(
output_shape
);
}
template
<
typename
dtype
>
void
unsqueeze_ref
(
const
std
::
shared_ptr
<
operators
::
UnsqueezeOp
>
op
)
{
Scope
*
scope
=
op
->
scope
();
const
OpInfo
*
op_info
=
op
->
op_info
();
auto
x
=
scope
->
FindTensor
(
"x"
);
auto
out
=
scope
->
FindMutableTensor
(
"out_ref"
);
auto
axes
=
op_info
->
GetAttr
<
std
::
vector
<
int
>>
(
"axes"
);
auto
y_dims
=
GetOutputShape
(
axes
,
x
->
dims
());
out
->
Resize
(
y_dims
);
auto
x_data
=
x
->
data
<
dtype
>
();
auto
out_data
=
out
->
mutable_data
<
dtype
>
();
memcpy
(
out_data
,
x_data
,
x
->
numel
()
*
sizeof
(
float
));
}
void
test_unsqueeze
(
const
std
::
vector
<
int64_t
>&
input_shape
,
std
::
vector
<
int
>
axes
)
{
// prepare input&output variables
Scope
scope
;
std
::
string
x_var_name
=
"x"
;
std
::
string
out_var_name
=
"out"
;
std
::
string
out_ref_var_name
=
"out_ref"
;
auto
*
x
=
scope
.
NewTensor
(
x_var_name
);
auto
*
out
=
scope
.
NewTensor
(
out_var_name
);
auto
*
out_ref
=
scope
.
NewTensor
(
out_ref_var_name
);
x
->
Resize
(
input_shape
);
// initialize input&output data
FillTensor
<
float
>
(
x
);
// initialize op desc
cpp
::
OpDesc
opdesc
;
opdesc
.
SetType
(
"unsqueeze"
);
opdesc
.
SetInput
(
"X"
,
{
x_var_name
});
opdesc
.
SetOutput
(
"Out"
,
{
out_var_name
});
opdesc
.
SetAttr
(
"axes"
,
axes
);
// create and convert op to NPU model, then run it on NPU
auto
op
=
CreateOp
<
operators
::
UnsqueezeOp
>
(
opdesc
,
&
scope
);
LauchOp
(
op
,
{
x_var_name
},
{
out_var_name
});
// execute reference implementation and save to output tensor
unsqueeze_ref
<
float
>
(
op
);
// compare results
CHECK_EQ
(
out
->
dims
().
size
(),
out_ref
->
dims
().
size
());
for
(
int
i
=
0
;
i
<
out
->
dims
().
size
();
i
++
)
{
CHECK_EQ
(
out
->
dims
()[
i
],
out_ref
->
dims
()[
i
]);
}
auto
*
out_data
=
out
->
mutable_data
<
float
>
();
auto
*
out_ref_data
=
out_ref
->
mutable_data
<
float
>
();
for
(
int
i
=
0
;
i
<
out
->
dims
().
production
();
i
++
)
{
EXPECT_NEAR
(
out_data
[
i
],
out_ref_data
[
i
],
1e-2
);
}
}
TEST
(
NPUBridges
,
unsqueeze
)
{
test_unsqueeze
({
2
},
{
0
,
2
});
test_unsqueeze
({
2
,
3
},
{
1
,
3
});
test_unsqueeze
({
1
,
2
,
3
},
{
3
});
test_unsqueeze
({
5
,
6
,
7
},
{
1
});
}
}
// namespace bridges
}
// namespace npu
}
// namespace kernels
}
// namespace lite
}
// namespace paddle
USE_LITE_OP
(
unsqueeze
);
USE_NPU_BRIDGE
(
unsqueeze
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录