Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
8c2e4ac2
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看板
提交
8c2e4ac2
编写于
1月 07, 2019
作者:
H
hjchen2
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Make 5x5 depthwise conv implementation invisible for aarch64
上级
55541ad1
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
1 deletion
+9
-1
src/operators/kernel/central-arm-func/conv_arm_func.h
src/operators/kernel/central-arm-func/conv_arm_func.h
+1
-1
src/operators/math/quantize.h
src/operators/math/quantize.h
+8
-0
未找到文件。
src/operators/kernel/central-arm-func/conv_arm_func.h
浏览文件 @
8c2e4ac2
...
...
@@ -186,7 +186,6 @@ inline void DepthwiseConv3x3(const ConvParam<CPU> ¶m) {
}
}
}
#endif // __aarch64__
template
<
typename
Itype
,
typename
Otype
>
inline
void
DepthwiseConv5x5
(
const
ConvParam
<
CPU
>
&
param
)
{
...
...
@@ -209,6 +208,7 @@ inline void DepthwiseConv5x5(const ConvParam<CPU> ¶m) {
GemmConv
<
Itype
,
Otype
>
(
param
);
}
}
#endif // __aarch64__
}
// namespace operators
}
// namespace paddle_mobile
...
...
src/operators/math/quantize.h
浏览文件 @
8c2e4ac2
...
...
@@ -56,6 +56,9 @@ inline int32x4_t vRoundq_f32(const float32x4_t &x) {
template
<
>
inline
int32x4_t
vRoundq_f32
<
ROUND_NEAREST_AWAY_ZERO
>
(
const
float32x4_t
&
x
)
{
#if __aarch64__
return
vcvtaq_s32_f32
(
x
);
#else
float32x4_t
plus
=
vdupq_n_f32
(
0.5
);
float32x4_t
minus
=
vdupq_n_f32
(
-
0.5
);
float32x4_t
zero
=
vdupq_n_f32
(
0
);
...
...
@@ -64,10 +67,14 @@ inline int32x4_t vRoundq_f32<ROUND_NEAREST_AWAY_ZERO>(const float32x4_t &x) {
temp
=
vaddq_f32
(
x
,
temp
);
int32x4_t
ret
=
vcvtq_s32_f32
(
temp
);
return
ret
;
#endif
}
template
<
>
inline
int32x4_t
vRoundq_f32
<
ROUND_NEAREST_TO_EVEN
>
(
const
float32x4_t
&
x
)
{
#if __aarch64__
return
vcvtnq_s32_f32
(
x
);
#else
float32x4_t
point5
=
vdupq_n_f32
(
0.5
);
int32x4_t
one
=
vdupq_n_s32
(
1
);
int32x4_t
zero
=
vdupq_n_s32
(
0
);
...
...
@@ -90,6 +97,7 @@ inline int32x4_t vRoundq_f32<ROUND_NEAREST_TO_EVEN>(const float32x4_t &x) {
smask
=
vsubq_s32
(
smask
,
one
);
rnd
=
vaddq_s32
(
rnd
,
smask
);
return
rnd
;
#endif
}
#endif // __ARM_NEON__
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录