Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
24efaf41
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看板
提交
24efaf41
编写于
7月 14, 2020
作者:
C
chenjiaoAngel
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix compute error, test=develop
上级
1207be18
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
19 addition
and
17 deletion
+19
-17
lite/backends/arm/math/conv_block_utils.h
lite/backends/arm/math/conv_block_utils.h
+19
-10
lite/kernels/arm/sequence_conv_compute.cc
lite/kernels/arm/sequence_conv_compute.cc
+0
-7
未找到文件。
lite/backends/arm/math/conv_block_utils.h
浏览文件 @
24efaf41
...
...
@@ -160,7 +160,6 @@ void transpose(const Dtype* din, Dtype* dout, int m, int n) {
float32x4_t
din1
=
vld1q_f32
(
din_ptr1
);
float32x4_t
din2
=
vld1q_f32
(
din_ptr2
);
float32x4_t
din3
=
vld1q_f32
(
din_ptr3
);
dout_ptr0
+=
nn_num
;
Dtype
*
dout_ptr1
=
dout_ptr0
+
n
;
Dtype
*
dout_ptr2
=
dout_ptr1
+
n
;
Dtype
*
dout_ptr3
=
dout_ptr2
+
n
;
...
...
@@ -171,17 +170,27 @@ void transpose(const Dtype* din, Dtype* dout, int m, int n) {
din_ptr0
+=
4
;
din_ptr1
+=
4
;
// a00 b00 c00 d00 a02 b02 c02 d02
float32x4x2_t
tmp00
=
vtrnq_f32
(
tmp0
.
val
[
0
],
tmp2
.
val
[
0
]);
// a01 b01 c01 d01 a03 b03 c03 d03
float32x4x2_t
tmp02
=
vtrnq_f32
(
tmp0
.
val
[
1
],
tmp2
.
val
[
1
]);
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
;
din_ptr2
+=
4
;
din_ptr3
+=
4
;
vst1q_f32
(
dout_ptr0
,
tmp00
.
val
[
0
]);
vst1q_f32
(
dout_ptr1
,
tmp02
.
val
[
0
]);
vst1q_f32
(
dout_ptr2
,
tmp00
.
val
[
1
]);
vst1q_f32
(
dout_ptr3
,
tmp02
.
val
[
1
]);
vst1q_f32
(
dout_ptr0
,
tmp0
.
val
[
0
]);
vst1q_f32
(
dout_ptr1
,
tmp0
.
val
[
1
]);
dout_ptr0
+=
nn_num
;
vst1q_f32
(
dout_ptr2
,
tmp2
.
val
[
0
]);
vst1q_f32
(
dout_ptr3
,
tmp2
.
val
[
1
]);
}
dout_ptr0
+=
nn_num
;
for
(
int
y
=
0
;
y
<
remain_m
;
y
++
)
{
*
dout_ptr0
++
=
*
din_ptr0
++
;
*
dout_ptr0
++
=
*
din_ptr1
++
;
...
...
@@ -190,21 +199,21 @@ void transpose(const Dtype* din, Dtype* dout, int m, int n) {
}
}
const
Dtype
*
din_ptr0
=
din
+
cnt_n
*
mm_num
;
dout
=
dout
+
cnt_n
*
4
;
for
(
int
x
=
0
;
x
<
remain_n
;
x
++
)
{
Dtype
*
dout_ptr0
=
dout
+
x
*
4
;
for
(
int
y
=
0
;
y
<
cnt_m
;
y
++
)
{
float32x4_t
din0
=
vld1q_f32
(
din_ptr0
);
dout_ptr0
+=
nn_num
;
Dtype
*
dout_ptr1
=
dout_ptr0
+
n
;
Dtype
*
dout_ptr2
=
dout_ptr1
+
n
;
Dtype
*
dout_ptr3
=
dout_ptr2
+
n
;
din_ptr0
+=
4
;
*
dout_ptr0
=
din0
[
0
];
*
dout_ptr1
=
din0
[
1
];
dout_ptr0
+=
nn_num
;
*
dout_ptr2
=
din0
[
2
];
*
dout_ptr3
=
din0
[
3
];
}
dout_ptr0
+=
nn_num
;
for
(
int
y
=
0
;
y
<
remain_m
;
y
++
)
{
*
dout_ptr0
++
=
*
din_ptr0
++
;
}
...
...
lite/kernels/arm/sequence_conv_compute.cc
浏览文件 @
24efaf41
...
...
@@ -102,17 +102,10 @@ void SequenceConvCompute::Run() {
1
,
1
,
// stride_h, stride_w, dilation_h, dilation_w
tmp_data
);
#if 0
local_naive_transpose
(
tmp_data
,
sub_col_data
,
kernel_size
*
hidden_dim
,
input_row_end
-
input_row_begin
);
#else
paddle
::
lite
::
arm
::
math
::
transpose
(
tmp_data
,
sub_col_data
,
kernel_size
*
hidden_dim
,
input_row_end
-
input_row_begin
);
#endif
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录