Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
85a12dab
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看板
未验证
提交
85a12dab
编写于
7月 20, 2020
作者:
H
HappyAngel
提交者:
GitHub
7月 20, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[arm] update sequence_conv implementation (#3958)
* update sequence_conv profile * delete extra file, test=develop
上级
010a611d
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
73 addition
and
4 deletion
+73
-4
lite/backends/arm/math/conv_block_utils.h
lite/backends/arm/math/conv_block_utils.h
+65
-0
lite/kernels/arm/sequence_conv_compute.cc
lite/kernels/arm/sequence_conv_compute.cc
+8
-4
未找到文件。
lite/backends/arm/math/conv_block_utils.h
浏览文件 @
85a12dab
...
...
@@ -139,6 +139,71 @@ static bool conv_trans_weights_numc(const dtype* din,
}
return
true
;
}
// for example: m = 4, n = 4
// din = [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9 , 10 ,11], [12, 13, 14, 15]]
// dout = [[0, 4, 8, 12], [1, 5, 9, 13], [2, 6, 10, 14], [3, 7, 11, 15]]
/*
m = 8 n = 8: 0 1 2 3 4 5 6 7 0 8 16 24 32 40 48 56
16 17 18 19 20 21 22 23 2 10 18 26 34 42 50 58
24 25 26 27 28 29 30 31 3 11 19 27 35 43 51 59
32 33 34 35 36 37 38 39 4 12 20 28 36 44 52 60 ...
}
}
*/
template
<
typename
Dtype
>
void
local_transpose
(
const
Dtype
*
din
,
Dtype
*
dout
,
int
m
,
int
n
)
{
// n % 4 == 0 m % 4 == 0
// n * m ==> n * m data trans
int
offset_m
=
m
<<
2
;
const
Dtype
*
din_ptr
=
din
;
Dtype
*
dout_ptr
=
dout
;
for
(
int
i
=
0
;
i
<
n
;
i
+=
4
)
{
Dtype
*
out_ptr0
=
dout_ptr
;
Dtype
*
out_ptr1
=
dout_ptr
+
m
;
Dtype
*
out_ptr2
=
out_ptr1
+
m
;
Dtype
*
out_ptr3
=
out_ptr2
+
m
;
const
Dtype
*
in_ptr0
=
din_ptr
;
const
Dtype
*
in_ptr1
=
din_ptr
+
m
;
const
Dtype
*
in_ptr2
=
in_ptr1
+
m
;
const
Dtype
*
in_ptr3
=
in_ptr2
+
m
;
for
(
int
j
=
0
;
j
<
m
;
j
+=
4
)
{
float32x4_t
vin0
=
vld1q_f32
(
in_ptr0
);
float32x4_t
vin1
=
vld1q_f32
(
in_ptr1
);
float32x4_t
vin2
=
vld1q_f32
(
in_ptr2
);
float32x4_t
vin3
=
vld1q_f32
(
in_ptr3
);
// a00 b00 a02 b02 a01 b01 a03 b03
float32x4x2_t
tmp0
=
vtrnq_f32
(
vin0
,
vin1
);
// c00 d00 c02 d02 c01 d01 c03 d03
float32x4x2_t
tmp2
=
vtrnq_f32
(
vin2
,
vin3
);
in_ptr0
=
in_ptr3
+
m
;
in_ptr1
=
in_ptr3
+
2
*
m
;
float
tmp_val1
=
tmp0
.
val
[
0
][
2
];
float
tmp_val2
=
tmp0
.
val
[
0
][
3
];
tmp0
.
val
[
0
][
2
]
=
tmp2
.
val
[
0
][
0
];
tmp0
.
val
[
0
][
3
]
=
tmp2
.
val
[
0
][
1
];
float
tmp_val3
=
tmp0
.
val
[
1
][
2
];
float
tmp_val4
=
tmp0
.
val
[
1
][
3
];
tmp2
.
val
[
0
][
0
]
=
tmp_val1
;
tmp2
.
val
[
0
][
1
]
=
tmp_val2
;
tmp0
.
val
[
1
][
2
]
=
tmp2
.
val
[
1
][
0
];
tmp0
.
val
[
1
][
3
]
=
tmp2
.
val
[
1
][
1
];
tmp2
.
val
[
1
][
0
]
=
tmp_val3
;
tmp2
.
val
[
1
][
1
]
=
tmp_val4
;
in_ptr2
=
in_ptr1
+
m
;
in_ptr3
=
in_ptr1
+
2
*
m
;
vst1q_f32
(
out_ptr0
,
tmp0
.
val
[
0
]);
vst1q_f32
(
out_ptr1
,
tmp0
.
val
[
1
]);
out_ptr0
+=
4
;
out_ptr1
+=
4
;
vst1q_f32
(
out_ptr2
,
tmp2
.
val
[
0
]);
vst1q_f32
(
out_ptr3
,
tmp2
.
val
[
1
]);
out_ptr2
+=
4
;
out_ptr3
+=
4
;
}
dout_ptr
+=
offset_m
;
din_ptr
+=
4
;
}
}
template
<
typename
Dtype
>
void
transpose
(
const
Dtype
*
din
,
Dtype
*
dout
,
int
m
,
int
n
)
{
// nxm == mxn
...
...
lite/kernels/arm/sequence_conv_compute.cc
浏览文件 @
85a12dab
...
...
@@ -102,10 +102,14 @@ void SequenceConvCompute::Run() {
1
,
1
,
// stride_h, stride_w, dilation_h, dilation_w
tmp_data
);
local_naive_transpose
(
tmp_data
,
sub_col_data
,
kernel_size
*
hidden_dim
,
input_row_end
-
input_row_begin
);
int
cols
=
kernel_size
*
hidden_dim
;
int
rows
=
input_row_end
-
input_row_begin
;
if
(
cols
%
4
==
0
&&
rows
%
4
==
0
)
{
paddle
::
lite
::
arm
::
math
::
local_transpose
(
tmp_data
,
sub_col_data
,
cols
,
rows
);
}
else
{
local_naive_transpose
(
tmp_data
,
sub_col_data
,
cols
,
rows
);
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录