Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
cf84d42b
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看板
提交
cf84d42b
编写于
9月 12, 2019
作者:
W
Wilber
提交者:
cyj1986
9月 12, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add min_max_aspect_ratios_order attr in prior box op test=develop (#2016)
上级
806ba6e7
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
35 addition
and
13 deletion
+35
-13
lite/backends/arm/math/prior_box.cc
lite/backends/arm/math/prior_box.cc
+21
-9
lite/backends/arm/math/prior_box.h
lite/backends/arm/math/prior_box.h
+4
-2
lite/kernels/arm/density_prior_box_compute.cc
lite/kernels/arm/density_prior_box_compute.cc
+2
-1
lite/kernels/arm/prior_box_compute.cc
lite/kernels/arm/prior_box_compute.cc
+3
-1
lite/operators/op_params.h
lite/operators/op_params.h
+1
-0
lite/operators/prior_box_op.cc
lite/operators/prior_box_op.cc
+4
-0
未找到文件。
lite/backends/arm/math/prior_box.cc
浏览文件 @
cf84d42b
...
...
@@ -63,7 +63,8 @@ void density_prior_box(const lite::Tensor* input,
int
prior_num_
,
bool
is_flip_
,
bool
is_clip_
,
const
std
::
vector
<
std
::
string
>&
order_
)
{
const
std
::
vector
<
std
::
string
>&
order_
,
bool
min_max_aspect_ratios_order
)
{
// compute output shape
int
win1
=
input
->
dims
()[
3
];
int
hin1
=
input
->
dims
()[
2
];
...
...
@@ -284,6 +285,14 @@ void density_prior_box(const lite::Tensor* input,
//! ymax
com_buf
[
com_idx
++
]
=
(
center_y
+
box_height
/
2.
f
)
/
img_height
;
}
if
(
min_max_aspect_ratios_order
)
{
memcpy
(
_cpu_data
+
idx
,
min_buf
,
sizeof
(
float
)
*
min_idx
);
idx
+=
min_idx
;
memcpy
(
_cpu_data
+
idx
,
max_buf
,
sizeof
(
float
)
*
max_idx
);
idx
+=
max_idx
;
memcpy
(
_cpu_data
+
idx
,
com_buf
,
sizeof
(
float
)
*
com_idx
);
idx
+=
com_idx
;
}
else
{
memcpy
(
_cpu_data
+
idx
,
min_buf
,
sizeof
(
float
)
*
min_idx
);
idx
+=
min_idx
;
memcpy
(
_cpu_data
+
idx
,
com_buf
,
sizeof
(
float
)
*
com_idx
);
...
...
@@ -291,6 +300,7 @@ void density_prior_box(const lite::Tensor* input,
memcpy
(
_cpu_data
+
idx
,
max_buf
,
sizeof
(
float
)
*
max_idx
);
idx
+=
max_idx
;
}
}
fast_free
(
min_buf
);
fast_free
(
max_buf
);
fast_free
(
com_buf
);
...
...
@@ -333,7 +343,8 @@ void prior_box(const lite::Tensor* input,
int
prior_num
,
bool
is_flip
,
bool
is_clip
,
const
std
::
vector
<
std
::
string
>&
order
)
{
const
std
::
vector
<
std
::
string
>&
order
,
bool
min_max_aspect_ratios_order
)
{
density_prior_box
(
input
,
image
,
boxes
,
...
...
@@ -353,7 +364,8 @@ void prior_box(const lite::Tensor* input,
prior_num
,
is_flip
,
is_clip
,
order
);
order
,
min_max_aspect_ratios_order
);
}
}
// namespace math
...
...
lite/backends/arm/math/prior_box.h
浏览文件 @
cf84d42b
...
...
@@ -42,7 +42,8 @@ void density_prior_box(const lite::Tensor* input,
int
prior_num_
,
bool
is_flip_
,
bool
is_clip_
,
const
std
::
vector
<
std
::
string
>&
order_
);
const
std
::
vector
<
std
::
string
>&
order_
,
bool
min_max_aspect_ratios_order
);
void
prior_box
(
const
lite
::
Tensor
*
input
,
const
lite
::
Tensor
*
image
,
...
...
@@ -60,7 +61,8 @@ void prior_box(const lite::Tensor* input,
int
prior_num
,
bool
is_flip
,
bool
is_clip
,
const
std
::
vector
<
std
::
string
>&
order
);
const
std
::
vector
<
std
::
string
>&
order
,
bool
min_max_aspect_ratios_order
);
}
// namespace math
}
// namespace arm
...
...
lite/kernels/arm/density_prior_box_compute.cc
浏览文件 @
cf84d42b
...
...
@@ -100,7 +100,8 @@ void DensityPriorBoxCompute::Run() {
prior_num
,
is_flip
,
is_clip
,
order
);
order
,
false
);
}
}
// namespace arm
...
...
lite/kernels/arm/prior_box_compute.cc
浏览文件 @
cf84d42b
...
...
@@ -65,6 +65,7 @@ void PriorBoxCompute::Run() {
size_t
prior_num
=
aspect_ratios_vec
.
size
()
*
min_size
.
size
();
prior_num
+=
max_size
.
size
();
std
::
vector
<
std
::
string
>
order
=
param
.
order
;
bool
min_max_aspect_ratios_order
=
param
.
min_max_aspect_ratios_order
;
lite
::
arm
::
math
::
prior_box
(
param
.
input
,
param
.
image
,
...
...
@@ -82,7 +83,8 @@ void PriorBoxCompute::Run() {
prior_num
,
is_flip
,
is_clip
,
order
);
order
,
min_max_aspect_ratios_order
);
}
}
// namespace arm
...
...
lite/operators/op_params.h
浏览文件 @
cf84d42b
...
...
@@ -540,6 +540,7 @@ struct PriorBoxParam {
int
prior_num
{
0
};
// priortype: prior_min, prior_max, prior_com
std
::
vector
<
std
::
string
>
order
;
bool
min_max_aspect_ratios_order
{
false
};
};
struct
DensityPriorBoxParam
:
public
PriorBoxParam
{
...
...
lite/operators/prior_box_op.cc
浏览文件 @
cf84d42b
...
...
@@ -67,6 +67,10 @@ bool PriorBoxOpLite::AttachImpl(const cpp::OpDesc& opdesc, lite::Scope* scope) {
if
(
opdesc
.
HasAttr
(
"order"
))
{
param_
.
order
=
opdesc
.
GetAttr
<
std
::
vector
<
std
::
string
>>
(
"order"
);
}
if
(
opdesc
.
HasAttr
(
"min_max_aspect_ratios_order"
))
{
param_
.
min_max_aspect_ratios_order
=
opdesc
.
GetAttr
<
bool
>
(
"min_max_aspect_ratios_order"
);
}
return
true
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录