Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
0f6b88d2
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看板
提交
0f6b88d2
编写于
8月 31, 2020
作者:
C
chenjiaoAngel
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fiix format. test=develop
上级
45f8b54a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
5 addition
and
1 deletion
+5
-1
lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc
lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc
+5
-0
lite/kernels/arm/conv_depthwise.cc
lite/kernels/arm/conv_depthwise.cc
+0
-1
未找到文件。
lite/backends/arm/math/conv5x5s1_depthwise_fp32.cc
浏览文件 @
0f6b88d2
...
...
@@ -35,6 +35,7 @@ void conv_depthwise_5x5s1_bias(float* dout,
int
pad_left
,
int
pad_right
,
ARMContext
*
ctx
);
void
conv_depthwise_5x5s1_bias_relu
(
float
*
dout
,
const
float
*
din
,
const
float
*
weights
,
...
...
@@ -51,6 +52,7 @@ void conv_depthwise_5x5s1_bias_relu(float* dout,
int
pad_left
,
int
pad_right
,
ARMContext
*
ctx
);
void
conv_depthwise_5x5s1_bias_relu6
(
float
*
dout
,
const
float
*
din
,
const
float
*
weights
,
...
...
@@ -68,6 +70,7 @@ void conv_depthwise_5x5s1_bias_relu6(float* dout,
int
pad_left
,
int
pad_right
,
ARMContext
*
ctx
);
void
conv_depthwise_5x5s1_bias_leakyRelu
(
float
*
dout
,
const
float
*
din
,
const
float
*
weights
,
...
...
@@ -85,6 +88,7 @@ void conv_depthwise_5x5s1_bias_leakyRelu(float* dout,
int
pad_left
,
int
pad_right
,
ARMContext
*
ctx
);
void
conv_depthwise_5x5s1_fp32
(
float
*
dout
,
const
float
*
din
,
const
float
*
weights
,
...
...
@@ -190,6 +194,7 @@ void conv_depthwise_5x5s1_fp32(float* dout,
ctx
);
}
}
// clang-format off
#ifdef __aarch64__
#define COMPUTE_ONE_LINE_S1_PRE \
...
...
lite/kernels/arm/conv_depthwise.cc
浏览文件 @
0f6b88d2
...
...
@@ -57,7 +57,6 @@ void DepthwiseConv<PRECISION(kFloat), PRECISION(kFloat)>::PrepareForRun() {
kernel_func_name_
=
"conv_depthwise_3x3_fp32"
;
#endif
}
else
if
(
kw
==
5
)
{
// VLOG(5) << "invoke 5x5 dw conv fp32";
bool
pads_five
=
(
paddings
[
0
]
<
5
)
||
(
paddings
[
2
]
<
5
);
auto
strides
=
param
.
strides
;
if
(
ch_four
&&
pads_five
&&
win
>=
kw
&&
hin
>=
kw
&&
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录