Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
752fccc0
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,发现更多精彩内容 >>
未验证
提交
752fccc0
编写于
2月 05, 2020
作者:
H
HappyAngel
提交者:
GitHub
2月 05, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[arm] fix conv_dw leakyRelu compute error (#2814)
[arm] fix conv_dw leakyRelu compute error
上级
928e2a24
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
10 addition
and
15 deletion
+10
-15
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32.cc
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32.cc
+4
-4
lite/backends/arm/math/conv5x5s2_depthwise_fp32.cc
lite/backends/arm/math/conv5x5s2_depthwise_fp32.cc
+3
-3
lite/tests/math/conv_compute_test.cc
lite/tests/math/conv_compute_test.cc
+3
-8
未找到文件。
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32.cc
浏览文件 @
752fccc0
...
...
@@ -617,7 +617,7 @@ void conv_depthwise_3x3s1_fp32(const float *din,
"fcmge v18.4s, v12.4s, %[vzero].4s \n"
/* vcgeq_f32 */
\
"fcmge v19.4s, v13.4s, %[vzero].4s \n"
/* vcgeq_f32 */
\
"fmul v20.4s, v12.4s, %[vscale].4s \n"
/* mul */
\
"fmul v21.4s, v1
2
.4s, %[vscale].4s \n"
/* mul */
\
"fmul v21.4s, v1
3
.4s, %[vscale].4s \n"
/* mul */
\
"ld1 {v8.4s}, [%[din_ptr4]], #16 \n"
/*vld1q_f32(din_ptr0)*/
\
\
"fmla v15.4s , v16.4s, %[w1].s[0]\n"
/* outr00 += din2_0123 * w0[1]*/
\
...
...
@@ -1627,7 +1627,7 @@ void conv_depthwise_3x3s1_fp32(const float *din,
\
"vbif q4, q6, q15 @ choose \n" \
"vcge.f32 q7, q5, %q[vzero] @ q0 > 0 \n" \
"vmul.f32 q6, q
4
, q14 \n" \
"vmul.f32 q6, q
5
, q14 \n" \
"vst1.32 {d8-d9}, [%[dout_ptr1]]! @ store result, add pointer\n" \
"vld1.32 {d28-d29}, [%[din3_ptr]]! @ load din r0\n" \
\
...
...
@@ -1815,8 +1815,8 @@ void conv_depthwise_3x3s1_fp32(const float *din,
"vmul.f32 q12, q14, q9 \n" \
"vmul.f32 q13, q15, q9 \n" \
\
"vbif q14, q1
0, q12
\n" \
"vbif q15, q1
1, q13
\n" \
"vbif q14, q1
2, q10
\n" \
"vbif q15, q1
3, q11
\n" \
\
"vst1.32 {d28-d29}, [%[out1]]\n" \
"vst1.32 {d30-d31}, [%[out2]]\n"
...
...
lite/backends/arm/math/conv5x5s2_depthwise_fp32.cc
浏览文件 @
752fccc0
...
...
@@ -209,9 +209,9 @@ namespace math {
"fcmge v7.4s, v22.4s, v0.4s \n"
/* vcgeq_f32 */
\
"fmul v8.4s, v22.4s, %[vscale].4s \n"
/* mul */
\
"bif v19.16b, v2.16b, v1.16b \n"
/* choose*/
\
"bif v
19
.16b, v4.16b, v3.16b \n"
/* choose*/
\
"bif v
19
.16b, v6.16b, v5.16b \n"
/* choose*/
\
"bif v
19
.16b, v8.16b, v7.16b \n"
/* choose*/
"bif v
20
.16b, v4.16b, v3.16b \n"
/* choose*/
\
"bif v
21
.16b, v6.16b, v5.16b \n"
/* choose*/
\
"bif v
22
.16b, v8.16b, v7.16b \n"
/* choose*/
#define STORE
/* save result */
\
"str q19, [%[outc0]], #16\n" \
"str q20, [%[outc1]], #16\n" \
...
...
lite/tests/math/conv_compute_test.cc
浏览文件 @
752fccc0
...
...
@@ -306,8 +306,8 @@ void test_conv_fp32(const std::vector<DDim>& input_dims,
const
float
leakey_relu_scale
)
{}
#endif // LITE_WITH_ARM
// TODO(chenjiaoAngel): fix m
e
, diff: 3x3 depthwise conv
#if
0
/// 3x3dw
// TODO(chenjiaoAngel): fix m
ulti-threds
, diff: 3x3 depthwise conv
#if
1
/// 3x3dw
TEST
(
TestConv3x3DW
,
test_conv3x3_depthwise
)
{
if
(
FLAGS_basic_test
)
{
for
(
auto
&
stride
:
{
1
,
2
})
{
...
...
@@ -334,7 +334,7 @@ TEST(TestConv3x3DW, test_conv3x3_depthwise) {
{
1
,
1
},
flag_bias
,
flag_act
,
{1
, 2, 4
},
{
1
},
{
FLAGS_power_mode
},
leakey_relu_scale
);
}
...
...
@@ -352,12 +352,7 @@ TEST(TestConv3x3DW, test_conv3x3_depthwise) {
#if 1 /// 5x5dw
TEST
(
TestConv5x5DW
,
test_conv5x5_depthwise
)
{
if
(
FLAGS_basic_test
)
{
#ifdef __aarch64__
// TODO(chenjiaoAngel): fix me, diff: arm64 5x5s2 depthwise conv
for
(
auto
&
stride
:
{
1
})
{
#else
for
(
auto
&
stride
:
{
1
,
2
})
{
#endif
for
(
auto
&
pad_left
:
{
0
,
1
,
2
})
{
for
(
auto
&
pad_right
:
{
0
,
1
,
2
})
{
for
(
auto
&
pad_top
:
{
0
,
1
,
2
})
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录