Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
e7d43b02
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
e7d43b02
编写于
8月 06, 2020
作者:
Q
Qinghe JING
提交者:
GitHub
8月 06, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add support for 3-dimensional input in reduce max (#4054)
* add support for three-dimentional input in reduce max test=develop
上级
ab7b2855
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
276 addition
and
62 deletion
+276
-62
lite/backends/arm/math/reduce_max.cc
lite/backends/arm/math/reduce_max.cc
+62
-0
lite/backends/arm/math/reduce_max.h
lite/backends/arm/math/reduce_max.h
+16
-0
lite/kernels/arm/reduce_max_compute.cc
lite/kernels/arm/reduce_max_compute.cc
+65
-31
lite/tests/kernels/reduce_max_compute_test.cc
lite/tests/kernels/reduce_max_compute_test.cc
+133
-31
未找到文件。
lite/backends/arm/math/reduce_max.cc
浏览文件 @
e7d43b02
...
...
@@ -46,6 +46,68 @@ void reduce_n<float>(const float* src,
}
}
template
<
>
void
reduce_first_of_three
<
float
>
(
const
float
*
src
,
float
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
)
{
for
(
int
i
=
0
;
i
<
second_in
;
i
++
)
{
for
(
int
j
=
0
;
j
<
third_in
;
j
++
)
{
dst
[
i
*
third_in
+
j
]
=
src
[
i
*
third_in
+
j
];
for
(
int
k
=
1
;
k
<
first_in
;
k
++
)
{
dst
[
i
*
third_in
+
j
]
=
src
[
k
*
second_in
*
third_in
+
i
*
third_in
+
j
]
>
dst
[
i
*
third_in
+
j
]
?
src
[
k
*
second_in
*
third_in
+
i
*
third_in
+
j
]
:
dst
[
i
*
third_in
+
j
];
}
}
}
}
template
<
>
void
reduce_second_of_three
<
float
>
(
const
float
*
src
,
float
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
)
{
for
(
int
i
=
0
;
i
<
first_in
;
i
++
)
{
for
(
int
j
=
0
;
j
<
third_in
;
j
++
)
{
dst
[
i
*
third_in
+
j
]
=
src
[
i
*
second_in
*
third_in
+
j
];
for
(
int
k
=
1
;
k
<
second_in
;
k
++
)
{
dst
[
i
*
third_in
+
j
]
=
src
[
i
*
second_in
*
third_in
+
third_in
*
k
+
j
]
>
dst
[
i
*
third_in
+
j
]
?
src
[
i
*
second_in
*
third_in
+
third_in
*
k
+
j
]
:
dst
[
i
*
third_in
+
j
];
}
}
}
}
template
<
>
void
reduce_third_of_three
<
float
>
(
const
float
*
src
,
float
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
)
{
for
(
int
i
=
0
;
i
<
first_in
;
i
++
)
{
for
(
int
j
=
0
;
j
<
second_in
;
j
++
)
{
dst
[
i
*
second_in
+
j
]
=
src
[
i
*
second_in
*
third_in
+
j
*
second_in
];
for
(
int
k
=
0
;
k
<
third_in
;
k
++
)
{
dst
[
i
*
second_in
+
j
]
=
src
[
i
*
second_in
*
third_in
+
j
*
second_in
+
k
]
>
dst
[
i
*
second_in
+
j
]
?
src
[
i
*
second_in
*
third_in
+
j
*
second_in
+
k
]
:
dst
[
i
*
second_in
+
j
];
}
}
}
}
template
<
>
void
reduce_all_of_three
<
float
>
(
const
float
*
src
,
float
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
)
{
float
max
=
src
[
0
];
int
total_element
=
first_in
*
second_in
*
third_in
;
for
(
int
i
=
0
;
i
<
total_element
;
i
++
)
{
max
=
src
[
i
]
>
max
?
src
[
i
]
:
max
;
}
dst
[
0
]
=
max
;
}
template
<
>
void
reduce_c
<
float
>
(
const
float
*
src
,
float
*
dst
,
...
...
lite/backends/arm/math/reduce_max.h
浏览文件 @
e7d43b02
...
...
@@ -35,6 +35,22 @@ void reduce_c(const T* src,
int
height_in
,
int
width_in
);
template
<
typename
T
>
void
reduce_all_of_three
(
const
T
*
src
,
T
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
);
template
<
typename
T
>
void
reduce_first_of_three
(
const
T
*
src
,
T
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
);
template
<
typename
T
>
void
reduce_second_of_three
(
const
T
*
src
,
T
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
);
template
<
typename
T
>
void
reduce_third_of_three
(
const
T
*
src
,
T
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
);
template
<
typename
T
>
void
reduce_h
(
const
T
*
src
,
T
*
dst
,
...
...
lite/kernels/arm/reduce_max_compute.cc
浏览文件 @
e7d43b02
...
...
@@ -25,6 +25,7 @@ void ReduceMaxCompute::Run() {
auto
&
param
=
Param
<
operators
::
ReduceMaxParam
>
();
const
float
*
input
=
param
.
X
->
data
<
float
>
();
auto
x_dims
=
param
.
X
->
dims
();
int
x_rank
=
x_dims
.
size
();
float
*
output
=
param
.
Out
->
mutable_data
<
float
>
();
bool
keep_dim
=
param
.
keep_dim
;
...
...
@@ -37,10 +38,40 @@ void ReduceMaxCompute::Run() {
}
}
}
if
(
x_dims
.
size
()
==
3
)
{
if
(
dim
.
size
()
==
0
||
dim
.
size
()
==
3
)
{
lite
::
arm
::
math
::
reduce_all_of_three
(
input
,
output
,
x_dims
[
0
],
x_dims
[
1
],
x_dims
[
2
]);
}
else
if
(
dim
.
size
()
==
1
)
{
switch
(
dim
[
0
])
{
case
0
:
lite
::
arm
::
math
::
reduce_first_of_three
(
input
,
output
,
x_dims
[
0
],
x_dims
[
1
],
x_dims
[
2
]);
break
;
case
1
:
lite
::
arm
::
math
::
reduce_second_of_three
(
input
,
output
,
x_dims
[
0
],
x_dims
[
1
],
x_dims
[
2
]);
break
;
case
2
:
lite
::
arm
::
math
::
reduce_third_of_three
(
input
,
output
,
x_dims
[
0
],
x_dims
[
1
],
x_dims
[
2
]);
break
;
default:
LOG
(
FATAL
)
<<
"error!!!"
;
}
}
else
if
(
dim
.
size
()
==
2
)
{
LOG
(
FATAL
)
<<
"Will support later!!"
;
}
else
{
LOG
(
FATAL
)
<<
"dim size should not larger than 3!!!"
;
}
}
else
if
(
x_dims
.
size
()
==
4
)
{
int
n_in
=
x_dims
[
0
];
int
c_in
=
x_dims
[
1
];
int
h_in
=
x_dims
[
2
];
int
w_in
=
x_dims
[
3
];
if
(
dim
.
size
()
==
0
)
{
lite
::
arm
::
math
::
reduce_all
(
input
,
output
,
n_in
,
c_in
,
h_in
,
w_in
);
}
else
if
(
dim
.
size
()
==
1
)
{
...
...
@@ -73,6 +104,9 @@ void ReduceMaxCompute::Run() {
}
else
{
LOG
(
FATAL
)
<<
"dim's size over than 2, which is not supported now!!"
;
}
}
else
{
LOG
(
FATAL
)
<<
"only support input with 3&4 dimensions now!!"
;
}
}
}
// namespace arm
...
...
lite/tests/kernels/reduce_max_compute_test.cc
浏览文件 @
e7d43b02
...
...
@@ -190,6 +190,64 @@ void reduce_hw(const float* src,
reduce_w
(
tmp_out
,
dst
,
num_in
,
channel_in
,
1
,
width_in
);
}
void
reduce_first_of_three
(
const
float
*
src
,
float
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
)
{
for
(
int
i
=
0
;
i
<
second_in
;
i
++
)
{
for
(
int
j
=
0
;
j
<
third_in
;
j
++
)
{
dst
[
i
*
third_in
+
j
]
=
src
[
i
*
third_in
+
j
];
for
(
int
k
=
1
;
k
<
first_in
;
k
++
)
{
dst
[
i
*
third_in
+
j
]
=
src
[
k
*
second_in
*
third_in
+
i
*
third_in
+
j
]
>
dst
[
i
*
third_in
+
j
]
?
src
[
k
*
second_in
*
third_in
+
i
*
third_in
+
j
]
:
dst
[
i
*
third_in
+
j
];
}
}
}
}
void
reduce_second_of_three
(
const
float
*
src
,
float
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
)
{
for
(
int
i
=
0
;
i
<
first_in
;
i
++
)
{
for
(
int
j
=
0
;
j
<
third_in
;
j
++
)
{
dst
[
i
*
third_in
+
j
]
=
src
[
i
*
second_in
*
third_in
+
j
];
for
(
int
k
=
1
;
k
<
second_in
;
k
++
)
{
dst
[
i
*
third_in
+
j
]
=
src
[
i
*
second_in
*
third_in
+
third_in
*
k
+
j
]
>
dst
[
i
*
third_in
+
j
]
?
src
[
i
*
second_in
*
third_in
+
third_in
*
k
+
j
]
:
dst
[
i
*
third_in
+
j
];
}
}
}
}
void
reduce_third_of_three
(
const
float
*
src
,
float
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
)
{
for
(
int
i
=
0
;
i
<
first_in
;
i
++
)
{
for
(
int
j
=
0
;
j
<
second_in
;
j
++
)
{
dst
[
i
*
second_in
+
j
]
=
src
[
i
*
second_in
*
third_in
+
j
*
second_in
];
for
(
int
k
=
0
;
k
<
third_in
;
k
++
)
{
dst
[
i
*
second_in
+
j
]
=
src
[
i
*
second_in
*
third_in
+
j
*
second_in
+
k
]
>
dst
[
i
*
second_in
+
j
]
?
src
[
i
*
second_in
*
third_in
+
j
*
second_in
+
k
]
:
dst
[
i
*
second_in
+
j
];
}
}
}
}
void
reduce_all_of_three
(
const
float
*
src
,
float
*
dst
,
int
first_in
,
int
second_in
,
int
third_in
)
{
float
max
=
src
[
0
];
int
total_element
=
first_in
*
second_in
*
third_in
;
for
(
int
i
=
0
;
i
<
total_element
;
i
++
)
{
max
=
src
[
i
]
>
max
?
src
[
i
]
:
max
;
}
dst
[
0
]
=
max
;
}
class
ReduceMaxComputeTester
:
public
arena
::
TestCase
{
protected:
// common attributes for this op.
...
...
@@ -256,11 +314,40 @@ class ReduceMaxComputeTester : public arena::TestCase {
}
auto
*
out_data
=
out
->
mutable_data
<
float
>
();
if
(
x_dims_
.
size
()
==
3
)
{
if
(
dim_
.
size
()
==
0
||
dim_
.
size
()
==
3
)
{
reduce_all_of_three
(
x_data
,
out_data
,
x_dims_
[
0
],
x_dims_
[
1
],
x_dims_
[
2
]);
}
else
if
(
dim_
.
size
()
==
1
)
{
switch
(
dim_
[
0
])
{
case
0
:
reduce_first_of_three
(
x_data
,
out_data
,
x_dims_
[
0
],
x_dims_
[
1
],
x_dims_
[
2
]);
break
;
case
1
:
reduce_second_of_three
(
x_data
,
out_data
,
x_dims_
[
0
],
x_dims_
[
1
],
x_dims_
[
2
]);
break
;
case
2
:
reduce_third_of_three
(
x_data
,
out_data
,
x_dims_
[
0
],
x_dims_
[
1
],
x_dims_
[
2
]);
break
;
default:
LOG
(
FATAL
)
<<
"error!!!"
;
}
}
else
if
(
dim_
.
size
()
==
2
)
{
LOG
(
FATAL
)
<<
"invalid dims_!!"
;
}
else
{
LOG
(
FATAL
)
<<
"dim size should not larger than 3!!!"
;
}
}
else
if
(
x_dims_
.
size
()
==
4
)
{
int
in_n
=
x_dims_
[
0
];
int
in_c
=
x_dims_
[
1
];
int
in_h
=
x_dims_
[
2
];
int
in_w
=
x_dims_
[
3
];
if
(
dim_
.
size
()
==
0
)
{
reduce_all
(
x_data
,
out_data
,
in_n
,
in_c
,
in_h
,
in_w
);
}
else
if
(
dim_
.
size
()
==
1
)
{
...
...
@@ -292,6 +379,7 @@ class ReduceMaxComputeTester : public arena::TestCase {
}
}
}
}
void
PrepareOpDesc
(
cpp
::
OpDesc
*
op_desc
)
{
op_desc
->
SetType
(
"reduce_max"
);
...
...
@@ -333,6 +421,19 @@ void test_reduce_max(Place place) {
}
}
void
test_reduce_max_for_three
(
Place
place
)
{
std
::
vector
<
std
::
vector
<
int
>>
reduce_dim
{{
0
},
{
1
},
{
2
}};
for
(
bool
keep_dim
:
{
false
,
true
})
{
for
(
auto
dim
:
reduce_dim
)
{
auto
x_dims
=
DDim
(
std
::
vector
<
int64_t
>
({
3
,
4
,
5
}));
std
::
unique_ptr
<
arena
::
TestCase
>
tester
(
new
ReduceMaxComputeTester
(
place
,
"def"
,
dim
,
keep_dim
,
x_dims
));
arena
::
Arena
arena
(
std
::
move
(
tester
),
place
,
2e-5
);
arena
.
TestPrecision
();
}
}
}
TEST
(
ReduceMax
,
precision
)
{
// #ifdef LITE_WITH_X86
// Place place(TARGET(kX86));
...
...
@@ -340,6 +441,7 @@ TEST(ReduceMax, precision) {
#ifdef LITE_WITH_ARM
Place
place
(
TARGET
(
kARM
));
test_reduce_max
(
place
);
test_reduce_max_for_three
(
place
);
#endif
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录