Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
97b2c1a9
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看板
提交
97b2c1a9
编写于
11月 13, 2018
作者:
H
hjchen2
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Revert padding in winograd input transform, it looks faster than padding in advance
上级
b92caeb2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
23 addition
and
4 deletion
+23
-4
src/operators/kernel/central-arm-func/conv_arm_func.h
src/operators/kernel/central-arm-func/conv_arm_func.h
+6
-4
src/operators/math/winograd/winograd_transform_f6k3.cpp
src/operators/math/winograd/winograd_transform_f6k3.cpp
+17
-0
未找到文件。
src/operators/kernel/central-arm-func/conv_arm_func.h
浏览文件 @
97b2c1a9
...
...
@@ -130,8 +130,8 @@ inline void WinogradConv3x3(const ConvParam<CPU> ¶m) {
auto
winograd_pad
=
[
&
](
int
width
,
int
pad
)
{
int
output_tile
=
tile
-
kernel
+
1
;
//
int tiles = (width + pad - kernel) / output_tile + 1;
//
return (tiles - 1) * output_tile + tile - width;
// int tiles = (width + pad - kernel) / output_tile + 1;
// return (tiles - 1) * output_tile + tile - width;
int
pad_width
=
(
width
+
2
*
pad
-
kernel
)
/
output_tile
*
output_tile
;
return
pad_width
+
tile
-
width
;
};
...
...
@@ -141,8 +141,10 @@ inline void WinogradConv3x3(const ConvParam<CPU> ¶m) {
for
(
int
i
=
0
;
i
<
batch_size
;
++
i
)
{
Tensor
in_batch
=
input
->
Slice
(
i
,
i
+
1
);
Tensor
out_batch
=
output
->
Slice
(
i
,
i
+
1
);
int
pad_bottom
=
winograd_pad
(
in_batch
.
dims
()[
2
],
paddings
[
0
]);
int
pad_right
=
winograd_pad
(
in_batch
.
dims
()[
3
],
paddings
[
1
]);
// int pad_bottom = winograd_pad(in_batch.dims()[2], paddings[0]);
// int pad_right = winograd_pad(in_batch.dims()[3], paddings[1]);
int
pad_bottom
=
paddings
[
0
];
int
pad_right
=
paddings
[
1
];
if
(
paddings
[
0
]
||
paddings
[
1
]
||
pad_bottom
||
pad_right
)
{
framework
::
DDim
pad_shape
=
in_batch
.
dims
();
pad_shape
[
2
]
+=
paddings
[
0
]
+
pad_bottom
;
...
...
src/operators/math/winograd/winograd_transform_f6k3.cpp
浏览文件 @
97b2c1a9
...
...
@@ -336,6 +336,23 @@ void winograd_transform_input<8, 3>(const framework::Tensor &input,
memset
(
outptr
,
0
,
output
->
numel
()
*
sizeof
(
float
));
const
float
*
inptr
=
input
.
data
<
float
>
();
int
inter_h
=
(
height
-
2
)
/
6
;
int
inter_w
=
(
width
-
2
)
/
6
;
int
remain_h
=
height
-
(
inter_h
*
6
);
int
remain_w
=
width
-
(
inter_w
*
6
);
framework
::
Tensor
input_pad
;
if
(
remain_h
>
2
||
remain_w
>
2
)
{
inter_h
+=
(
remain_h
>
2
);
inter_w
+=
(
remain_w
>
2
);
height
=
(
inter_h
-
1
)
*
6
+
8
;
width
=
(
inter_w
-
1
)
*
6
+
8
;
framework
::
DDim
input_shape
=
framework
::
make_ddim
(
std
::
vector
<
int
>
{
1
,
channel
,
height
,
width
});
PadFunctor
<
CPU
,
float
>
pad
;
inptr
=
input_pad
.
mutable_data
<
float
>
(
input_shape
);
pad
(
input
,
0
,
height
-
input
.
dims
()[
2
],
0
,
width
-
input
.
dims
()[
3
],
&
input_pad
);
}
size_t
image_size
=
height
*
width
;
const
float
transform_matrix
[
8
]
=
{
5.25
f
,
-
5.
f
,
-
4.25
f
,
-
2.5
f
,
2.
f
,
-
1.25
f
,
0.5
f
,
0.25
f
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录