Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
919282cf
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
332
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看板
未验证
提交
919282cf
编写于
12月 03, 2019
作者:
Z
zhupengyang
提交者:
GitHub
12月 03, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[NPU] support 1-dimension input y in elemetwise ops (#2546)
test=develop
上级
1b875ae8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
33 addition
and
5 deletion
+33
-5
lite/kernels/npu/bridges/elementwise_ops.cc
lite/kernels/npu/bridges/elementwise_ops.cc
+29
-2
lite/kernels/npu/bridges/elementwise_ops_test.cc
lite/kernels/npu/bridges/elementwise_ops_test.cc
+4
-3
未找到文件。
lite/kernels/npu/bridges/elementwise_ops.cc
浏览文件 @
919282cf
...
...
@@ -21,6 +21,30 @@ namespace kernels {
namespace
npu
{
namespace
bridges
{
std
::
vector
<
int64_t
>
CvtYShape
(
const
Tensor
&
x
,
Tensor
*
y
,
int
axis
)
{
auto
x_dims
=
x
.
dims
();
CHECK_EQ
(
x_dims
.
size
(),
4UL
)
<<
"[NPU] only support 4-dimension x"
;
auto
y_dims
=
y
->
dims
();
CHECK_GE
(
x_dims
.
size
(),
y_dims
.
size
());
if
(
axis
<
0
)
{
axis
+=
x_dims
.
size
();
}
std
::
vector
<
int64_t
>
y_new_shape
(
y_dims
.
Vectorize
());
if
(
y_new_shape
.
size
()
==
4UL
)
{
return
y_new_shape
;
}
for
(
int
i
=
0
;
i
<
axis
;
i
++
)
{
y_new_shape
.
insert
(
y_new_shape
.
begin
(),
1
);
}
while
(
y_new_shape
.
size
()
<
4
)
{
y_new_shape
.
push_back
(
1
);
}
CHECK_EQ
(
y_new_shape
.
size
(),
4UL
);
return
y_new_shape
;
}
node_map_type
ElementwiseConverter
(
const
std
::
shared_ptr
<
lite
::
OpLite
>
elementwise_op
,
const
node_map_type
&
inputs_map
)
{
...
...
@@ -33,6 +57,7 @@ node_map_type ElementwiseConverter(
auto
x_var_name
=
op_info
->
Input
(
"X"
).
front
();
auto
y_var_name
=
op_info
->
Input
(
"Y"
).
front
();
CHECK
(
inputs_map
.
find
(
x_var_name
)
!=
inputs_map
.
end
());
auto
axis
=
op_info
->
GetAttr
<
int
>
(
"axis"
);
std
::
shared_ptr
<
ge
::
Operator
>
elementwise_node
=
nullptr
;
std
::
shared_ptr
<
ge
::
Operator
>
x_node
=
inputs_map
.
at
(
x_var_name
);
...
...
@@ -41,8 +66,10 @@ node_map_type ElementwiseConverter(
y_node
=
inputs_map
.
at
(
y_var_name
);
}
else
{
auto
y_const_node
=
std
::
make_shared
<
ge
::
op
::
Const
>
(
y_var_name
);
auto
*
y
=
scope
->
FindMutableTensor
(
y_var_name
);
y_const_node
->
set_attr_value
(
lite
::
npu
::
CvtTensor
(
y
));
auto
x
=
scope
->
FindTensor
(
x_var_name
);
auto
y
=
scope
->
FindMutableTensor
(
y_var_name
);
auto
y_new_shape
=
CvtYShape
(
*
x
,
y
,
axis
);
y_const_node
->
set_attr_value
(
lite
::
npu
::
CvtTensor
(
y
,
y_new_shape
));
y_node
=
y_const_node
;
}
lite
::
npu
::
OpList
::
Global
().
add
(
x_node
);
...
...
lite/kernels/npu/bridges/elementwise_ops_test.cc
浏览文件 @
919282cf
...
...
@@ -45,7 +45,7 @@ void elementwise_add_ref(const std::shared_ptr<operators::ElementwiseOp> op) {
if
(
axis
<
0
)
{
axis
+=
x_dims
.
size
();
}
int
batch
=
x_dims
[
0
]
/
y_dims
[
0
]
;
int
batch
=
1
;
int
channels
=
y
->
numel
();
int
num
=
x
->
numel
()
/
channels
/
batch
;
// do elementwise add/sub/max...
...
...
@@ -143,8 +143,8 @@ void test_elementwise_add(const std::vector<int64_t>& x_shape,
y
->
Resize
(
y_shape
);
// initialize input&output data
FillTensor
<
float
>
(
x
,
1
,
5
);
FillTensor
<
float
>
(
y
,
1
,
5
);
FillTensor
<
float
>
(
x
,
1
,
3
);
FillTensor
<
float
>
(
y
,
1
,
3
);
// initialize op desc
cpp
::
OpDesc
opdesc
;
...
...
@@ -171,6 +171,7 @@ void test_elementwise_add(const std::vector<int64_t>& x_shape,
TEST
(
NPUBridges
,
elementwise_add
)
{
for
(
auto
elt_type
:
{
"add"
,
"sub"
,
"mul"
,
"div"
})
{
test_elementwise_add
({
1
,
2
,
3
,
4
},
{
2
},
1
,
elt_type
);
test_elementwise_add
({
1
,
2
,
3
,
4
},
{
1
,
2
,
1
,
1
},
1
,
elt_type
);
test_elementwise_add
({
1
,
2
,
3
,
4
},
{
1
,
2
,
3
,
4
},
3
,
elt_type
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录