Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
86746af8
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看板
提交
86746af8
编写于
8月 05, 2020
作者:
C
chenjiaoAngel
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix build conv_dw_3x3s1 bug
上级
093f7c7f
变更
5
展开全部
隐藏空白更改
内联
并排
Showing
5 changed file
with
8725 addition
and
1693 deletion
+8725
-1693
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32.cc
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32.cc
+1531
-1377
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32_old.cc
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32_old.cc
+3838
-0
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32_relu.cc
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32_relu.cc
+0
-316
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32_relu_old.cc
...backends/arm/math/conv3x3s1p01_depthwise_fp32_relu_old.cc
+3299
-0
lite/backends/arm/math/conv_depthwise.h
lite/backends/arm/math/conv_depthwise.h
+57
-0
未找到文件。
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32.cc
浏览文件 @
86746af8
此差异已折叠。
点击以展开。
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32_old.cc
0 → 100644
浏览文件 @
86746af8
此差异已折叠。
点击以展开。
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32_relu.cc
浏览文件 @
86746af8
...
...
@@ -1658,7 +1658,6 @@ void conv_depthwise_3x3s1p1_bias_relu(float *dout,
}
int
cnt
=
cnt_col
;
if
(
flag_relu
)
{
asm
volatile
(
INIT_S1
LEFT_COMPUTE_S1
LEFT_RESULT_S1_RELU
MID_COMPUTE_S1
MID_RESULT_S1_RELU
RIGHT_COMPUTE_S1
RIGHT_RESULT_S1_RELU
...
...
@@ -1708,56 +1707,6 @@ void conv_depthwise_3x3s1p1_bias_relu(float *dout,
"v23"
,
"v24"
,
"v25"
);
}
else
{
asm
volatile
(
INIT_S1
LEFT_COMPUTE_S1
LEFT_RESULT_S1
MID_COMPUTE_S1
MID_RESULT_S1
RIGHT_COMPUTE_S1
RIGHT_RESULT_S1
:
[
cnt
]
"+r"
(
cnt
),
[
din_ptr0
]
"+r"
(
din_ptr0
),
[
din_ptr1
]
"+r"
(
din_ptr1
),
[
din_ptr2
]
"+r"
(
din_ptr2
),
[
din_ptr3
]
"+r"
(
din_ptr3
),
[
din_ptr4
]
"+r"
(
din_ptr4
),
[
din_ptr5
]
"+r"
(
din_ptr5
),
[
doutr0
]
"+r"
(
doutr0
),
[
doutr1
]
"+r"
(
doutr1
),
[
doutr2
]
"+r"
(
doutr2
),
[
doutr3
]
"+r"
(
doutr3
)
:
[
w0
]
"w"
(
wr0
),
[
w1
]
"w"
(
wr1
),
[
w2
]
"w"
(
wr2
),
[
bias_val
]
"r"
(
vbias
),
[
vmask
]
"r"
(
vmask
),
[
rmask
]
"r"
(
rmask
),
[
vzero
]
"w"
(
vzero
)
:
"cc"
,
"memory"
,
"v0"
,
"v1"
,
"v2"
,
"v3"
,
"v4"
,
"v5"
,
"v6"
,
"v7"
,
"v8"
,
"v9"
,
"v10"
,
"v11"
,
"v12"
,
"v13"
,
"v14"
,
"v15"
,
"v16"
,
"v17"
,
"v18"
,
"v19"
,
"v20"
,
"v21"
,
"v22"
,
"v23"
,
"v24"
,
"v25"
);
}
dout_ptr
=
dout_ptr
+
4
*
w_out
;
}
#else
...
...
@@ -1807,7 +1756,6 @@ void conv_depthwise_3x3s1p1_bias_relu(float *dout,
int
cnt
=
cnt_col
;
unsigned
int
*
rmask_ptr
=
rmask
;
unsigned
int
*
vmask_ptr
=
vmask
;
if
(
flag_relu
)
{
asm
volatile
(
INIT_S1
LEFT_COMPUTE_S1
LEFT_RESULT_S1_RELU
MID_COMPUTE_S1
MID_RESULT_S1_RELU
RIGHT_COMPUTE_S1
RIGHT_RESULT_S1_RELU
...
...
@@ -1839,38 +1787,6 @@ void conv_depthwise_3x3s1p1_bias_relu(float *dout,
"q13"
,
"q14"
,
"q15"
);
}
else
{
asm
volatile
(
INIT_S1
LEFT_COMPUTE_S1
LEFT_RESULT_S1
MID_COMPUTE_S1
MID_RESULT_S1
RIGHT_COMPUTE_S1
RIGHT_RESULT_S1
:
[
dout_ptr1
]
"+r"
(
doutr0
),
[
dout_ptr2
]
"+r"
(
doutr1
),
[
din0_ptr
]
"+r"
(
din_ptr0
),
[
din1_ptr
]
"+r"
(
din_ptr1
),
[
din2_ptr
]
"+r"
(
din_ptr2
),
[
din3_ptr
]
"+r"
(
din_ptr3
),
[
cnt
]
"+r"
(
cnt
),
[
rmask
]
"+r"
(
rmask_ptr
),
[
vmask
]
"+r"
(
vmask_ptr
)
:
[
wr0
]
"w"
(
wr0
),
[
wr1
]
"w"
(
wr1
),
[
wr2
]
"w"
(
wr2
),
[
bias_val
]
"r"
(
bias_val
),
[
vzero
]
"w"
(
vzero
)
:
"cc"
,
"memory"
,
"q4"
,
"q5"
,
"q6"
,
"q7"
,
"q8"
,
"q9"
,
"q10"
,
"q11"
,
"q12"
,
"q13"
,
"q14"
,
"q15"
);
}
dout_ptr
+=
2
*
w_out
;
}
//! end of processing mid rows
#endif
...
...
@@ -2098,7 +2014,6 @@ void conv_depthwise_3x3s1p1_bias_s_relu(float *dout,
break
;
}
#ifdef __aarch64__
if
(
flag_relu
)
{
asm
volatile
(
COMPUTE_S_S1
RESULT_S_S1_RELU
:
[
din0
]
"+r"
(
dr0
),
[
din1
]
"+r"
(
dr1
),
...
...
@@ -2130,41 +2045,7 @@ void conv_depthwise_3x3s1p1_bias_s_relu(float *dout,
"v15"
,
"v16"
,
"v17"
);
}
else
{
asm
volatile
(
COMPUTE_S_S1
RESULT_S_S1
:
[
din0
]
"+r"
(
dr0
),
[
din1
]
"+r"
(
dr1
),
[
din2
]
"+r"
(
dr2
),
[
din3
]
"+r"
(
dr3
)
:
[
wr0
]
"w"
(
wr0
),
[
wr1
]
"w"
(
wr1
),
[
wr2
]
"w"
(
wr2
),
[
zero
]
"w"
(
vzero
),
[
mask
]
"w"
(
vmask_rp
),
[
bias
]
"w"
(
wbias
),
[
out1
]
"r"
(
out_buf1
),
[
out2
]
"r"
(
out_buf2
)
:
"v0"
,
"v1"
,
"v2"
,
"v3"
,
"v4"
,
"v5"
,
"v6"
,
"v7"
,
"v8"
,
"v9"
,
"v10"
,
"v11"
,
"v12"
,
"v13"
,
"v14"
,
"v15"
,
"v16"
,
"v17"
);
}
#else
if
(
flag_relu
)
{
asm
volatile
(
COMPUTE_S_S1
RESULT_S_S1_RELU
:
[
din0
]
"+r"
(
dr0
),
[
din1
]
"+r"
(
dr1
),
...
...
@@ -2190,33 +2071,6 @@ void conv_depthwise_3x3s1p1_bias_s_relu(float *dout,
"q13"
,
"q14"
,
"q15"
);
}
else
{
asm
volatile
(
COMPUTE_S_S1
RESULT_S_S1
:
[
din0
]
"+r"
(
dr0
),
[
din1
]
"+r"
(
dr1
),
[
din2
]
"+r"
(
dr2
),
[
din3
]
"+r"
(
dr3
)
:
[
wr0
]
"w"
(
wr0
),
[
wr1
]
"w"
(
wr1
),
[
wr2
]
"w"
(
wr2
),
[
vzero
]
"w"
(
vzero
),
[
mask
]
"w"
(
vmask_rp
),
[
bias
]
"w"
(
wbias
),
[
out1
]
"r"
(
out_buf1
),
[
out2
]
"r"
(
out_buf2
)
:
"cc"
,
"memory"
,
"q6"
,
"q7"
,
"q8"
,
"q9"
,
"q10"
,
"q11"
,
"q12"
,
"q13"
,
"q14"
,
"q15"
);
}
#endif
for
(
int
w
=
0
;
w
<
w_out
;
++
w
)
{
*
doutr0
++
=
out_buf1
[
w
];
...
...
@@ -2659,7 +2513,6 @@ void conv_depthwise_3x3s1p0_bias_relu(float *dout,
}
int
cnt
=
tile_w
;
if
(
flag_relu
)
{
asm
volatile
(
INIT_S1
"ld1 {v8.4s}, [%[din_ptr4]], #16
\n
"
/*vld1q_f32(din_ptr0)*/
...
...
@@ -2719,67 +2572,6 @@ void conv_depthwise_3x3s1p0_bias_relu(float *dout,
"v23"
,
"v24"
,
"v25"
);
}
else
{
asm
volatile
(
INIT_S1
"ld1 {v8.4s}, [%[din_ptr4]], #16
\n
"
/*vld1q_f32(din_ptr0)*/
"ld1 {v10.4s}, [%[din_ptr5]], #16
\n
"
/*vld1q_f32(din_ptr0)*/
"ext v16.16b, v0.16b, v1.16b, #4
\n
"
/* v16 = 1234 */
"ext v17.16b, v0.16b, v1.16b, #8
\n
"
/* v17 = 2345 */
"ld1 {v9.4s}, [%[din_ptr4]]
\n
"
/*vld1q_f32(din_ptr0)*/
"ld1 {v11.4s}, [%[din_ptr5]]
\n
"
/*vld1q_f32(din_ptr0)*/
MID_COMPUTE_S1
MID_RESULT_S1
"cmp %w[remain], #1
\n
"
"blt 0f
\n
"
RIGHT_COMPUTE_S1
RIGHT_RESULT_S1
"0:
\n
"
:
[
cnt
]
"+r"
(
cnt
),
[
din_ptr0
]
"+r"
(
din_ptr0
),
[
din_ptr1
]
"+r"
(
din_ptr1
),
[
din_ptr2
]
"+r"
(
din_ptr2
),
[
din_ptr3
]
"+r"
(
din_ptr3
),
[
din_ptr4
]
"+r"
(
din_ptr4
),
[
din_ptr5
]
"+r"
(
din_ptr5
),
[
doutr0
]
"+r"
(
doutr0
),
[
doutr1
]
"+r"
(
doutr1
),
[
doutr2
]
"+r"
(
doutr2
),
[
doutr3
]
"+r"
(
doutr3
)
:
[
w0
]
"w"
(
wr0
),
[
w1
]
"w"
(
wr1
),
[
w2
]
"w"
(
wr2
),
[
bias_val
]
"r"
(
vbias
),
[
vmask
]
"r"
(
vmask
),
[
rmask
]
"r"
(
rmask
),
[
vzero
]
"w"
(
vzero
),
[
remain
]
"r"
(
remain
)
:
"cc"
,
"memory"
,
"v0"
,
"v1"
,
"v2"
,
"v3"
,
"v4"
,
"v5"
,
"v6"
,
"v7"
,
"v8"
,
"v9"
,
"v10"
,
"v11"
,
"v12"
,
"v13"
,
"v14"
,
"v15"
,
"v16"
,
"v17"
,
"v18"
,
"v19"
,
"v20"
,
"v21"
,
"v22"
,
"v23"
,
"v24"
,
"v25"
);
}
dout_ptr
=
dout_ptr
+
4
*
w_out
;
}
#else
...
...
@@ -2818,7 +2610,6 @@ void conv_depthwise_3x3s1p0_bias_relu(float *dout,
int
cnt
=
tile_w
;
unsigned
int
*
rmask_ptr
=
rmask
;
unsigned
int
*
vmask_ptr
=
vmask
;
if
(
flag_relu
)
{
asm
volatile
(
INIT_S1
"sub %[din0_ptr], #8 @ 0pad + 2 float data overlap
\n
"
"sub %[din1_ptr], #8 @ 0pad + 2 float data overlap
\n
"
...
...
@@ -2859,48 +2650,6 @@ void conv_depthwise_3x3s1p0_bias_relu(float *dout,
"q13"
,
"q14"
,
"q15"
);
}
else
{
asm
volatile
(
INIT_S1
"sub %[din0_ptr], #8 @ 0pad + 2 float data overlap
\n
"
"sub %[din1_ptr], #8 @ 0pad + 2 float data overlap
\n
"
"sub %[din2_ptr], #8 @ 0pad + 2 float data overlap
\n
"
"sub %[din3_ptr], #8 @ 0pad + 2 float data overlap
\n
"
"vext.32 q6, q8, q9, #1 @ 0012
\n
"
"vext.32 q7, q8, q9, #2 @ 1234
\n
"
MID_COMPUTE_S1
MID_RESULT_S1
"cmp %[remain], #1
\n
"
"blt 0f
\n
"
RIGHT_COMPUTE_S1
RIGHT_RESULT_S1
"0:
\n
"
:
[
dout_ptr1
]
"+r"
(
doutr0
),
[
dout_ptr2
]
"+r"
(
doutr1
),
[
din0_ptr
]
"+r"
(
din_ptr0
),
[
din1_ptr
]
"+r"
(
din_ptr1
),
[
din2_ptr
]
"+r"
(
din_ptr2
),
[
din3_ptr
]
"+r"
(
din_ptr3
),
[
cnt
]
"+r"
(
cnt
),
[
rmask
]
"+r"
(
rmask_ptr
),
[
vmask
]
"+r"
(
vmask_ptr
)
:
[
wr0
]
"w"
(
wr0
),
[
wr1
]
"w"
(
wr1
),
[
wr2
]
"w"
(
wr2
),
[
bias_val
]
"r"
(
bias_val
),
[
vzero
]
"w"
(
vzero
),
[
remain
]
"r"
(
remain
)
:
"cc"
,
"memory"
,
"q4"
,
"q5"
,
"q6"
,
"q7"
,
"q8"
,
"q9"
,
"q10"
,
"q11"
,
"q12"
,
"q13"
,
"q14"
,
"q15"
);
}
dout_ptr
+=
2
*
w_out
;
}
//! end of processing mid rows
#endif
...
...
@@ -3157,7 +2906,6 @@ void conv_depthwise_3x3s1p0_bias_s_relu(float *dout,
}
}
#ifdef __aarch64__
if
(
flag_relu
)
{
asm
volatile
(
COMPUTE_S_S1_P0
RESULT_S_S1_RELU
:
[
din0
]
"+r"
(
dr0
),
[
din1
]
"+r"
(
dr1
),
...
...
@@ -3190,44 +2938,9 @@ void conv_depthwise_3x3s1p0_bias_s_relu(float *dout,
"v13"
,
"v14"
,
"v15"
);
}
else
{
asm
volatile
(
COMPUTE_S_S1_P0
RESULT_S_S1
:
[
din0
]
"+r"
(
dr0
),
[
din1
]
"+r"
(
dr1
),
[
din2
]
"+r"
(
dr2
),
[
din3
]
"+r"
(
dr3
)
:
[
wr0
]
"w"
(
wr0
),
[
wr1
]
"w"
(
wr1
),
[
wr2
]
"w"
(
wr2
),
[
vbias
]
"w"
(
wbias
),
[
mask1
]
"w"
(
vmask_rp1
),
[
mask2
]
"w"
(
vmask_rp2
),
[
zero
]
"w"
(
vzero
),
[
out1
]
"r"
(
out_buf1
),
[
out2
]
"r"
(
out_buf2
)
:
"cc"
,
"memory"
,
"v0"
,
"v1"
,
"v2"
,
"v3"
,
"v4"
,
"v5"
,
"v6"
,
"v7"
,
"v8"
,
"v9"
,
"v10"
,
"v11"
,
"v12"
,
"v13"
,
"v14"
,
"v15"
);
}
#else
unsigned
int
*
vmask_ptr
=
vmask
;
float
bias_val
=
flag_bias
?
bias
[
i
]
:
0.
f
;
if
(
flag_relu
)
{
asm
volatile
(
COMPUTE_S_S1_P0
RESULT_S_S1_RELU
:
[
din0
]
"+r"
(
dr0
),
[
din1
]
"+r"
(
dr1
),
...
...
@@ -3255,35 +2968,6 @@ void conv_depthwise_3x3s1p0_bias_s_relu(float *dout,
"q13"
,
"q14"
,
"q15"
);
}
else
{
asm
volatile
(
COMPUTE_S_S1_P0
RESULT_S_S1
:
[
din0
]
"+r"
(
dr0
),
[
din1
]
"+r"
(
dr1
),
[
din2
]
"+r"
(
dr2
),
[
din3
]
"+r"
(
dr3
),
[
vmask
]
"+r"
(
vmask_ptr
)
:
[
wr0
]
"w"
(
wr0
),
[
wr1
]
"w"
(
wr1
),
[
wr2
]
"w"
(
wr2
),
[
vzero
]
"w"
(
vzero
),
[
bias_val
]
"r"
(
bias_val
),
[
out1
]
"r"
(
out_buf1
),
[
out2
]
"r"
(
out_buf2
)
:
"cc"
,
"memory"
,
"q4"
,
"q5"
,
"q6"
,
"q7"
,
"q8"
,
"q9"
,
"q10"
,
"q11"
,
"q12"
,
"q13"
,
"q14"
,
"q15"
);
}
#endif
for
(
int
w
=
0
;
w
<
w_out
;
++
w
)
{
*
doutr0
++
=
out_buf1
[
w
];
...
...
lite/backends/arm/math/conv3x3s1p01_depthwise_fp32_relu_old.cc
0 → 100644
浏览文件 @
86746af8
此差异已折叠。
点击以展开。
lite/backends/arm/math/conv_depthwise.h
浏览文件 @
86746af8
...
...
@@ -323,6 +323,63 @@ void conv_depthwise_3x3s2p1_bias_s_relu(float* dout,
const
int
w_out
,
ARMContext
*
ctx
);
void
conv_depthwise_3x3s1p0_bias_no_relu
(
float
*
dout
,
const
float
*
din
,
const
float
*
weights
,
const
float
*
bias
,
bool
flag_bias
,
bool
flag_relu
,
const
int
num
,
const
int
ch_in
,
const
int
h_in
,
const
int
w_in
,
const
int
h_out
,
const
int
w_out
,
ARMContext
*
ctx
);
void
conv_depthwise_3x3s1p0_bias_s_no_relu
(
float
*
dout
,
const
float
*
din
,
const
float
*
weights
,
const
float
*
bias
,
bool
flag_bias
,
bool
flag_relu
,
const
int
num
,
const
int
ch_in
,
const
int
h_in
,
const
int
w_in
,
const
int
h_out
,
const
int
w_out
,
ARMContext
*
ctx
);
void
conv_depthwise_3x3s1p1_bias_no_relu
(
float
*
dout
,
const
float
*
din
,
const
float
*
weights
,
const
float
*
bias
,
bool
flag_bias
,
bool
flag_relu
,
const
int
num
,
const
int
ch_in
,
const
int
h_in
,
const
int
w_in
,
const
int
h_out
,
const
int
w_out
,
ARMContext
*
ctx
);
void
conv_depthwise_3x3s1p1_bias_s_no_relu
(
float
*
dout
,
const
float
*
din
,
const
float
*
weights
,
const
float
*
bias
,
bool
flag_bias
,
bool
flag_relu
,
const
int
num
,
const
int
ch_in
,
const
int
h_in
,
const
int
w_in
,
const
int
h_out
,
const
int
w_out
,
ARMContext
*
ctx
);
}
// namespace math
}
// namespace arm
}
// namespace lite
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录