Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
244297e8
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看板
提交
244297e8
编写于
10月 09, 2018
作者:
H
hjchen2
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Refine
上级
b02f4b59
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
26 addition
and
0 deletion
+26
-0
src/operators/kernel/arm/quantize_kernel.cpp
src/operators/kernel/arm/quantize_kernel.cpp
+25
-0
src/operators/math/math_func_neon.h
src/operators/math/math_func_neon.h
+1
-0
未找到文件。
src/operators/kernel/arm/quantize_kernel.cpp
浏览文件 @
244297e8
...
...
@@ -44,6 +44,7 @@ int32x4_t vrnd_away_zero(float32x4_t r) {
}
int32x4_t
vrnd_to_even
(
float32x4_t
r
)
{
#if 0
int32x4_t ret;
float value[4];
vst1q_f32(value, r);
...
...
@@ -61,6 +62,30 @@ int32x4_t vrnd_to_even(float32x4_t r) {
}
}
return ret;
#else
float32x4_t
point5
=
vdupq_n_f32
(
0.5
);
int32x4_t
one
=
vdupq_n_s32
(
1
);
int32x4_t
zero
=
vdupq_n_s32
(
0
);
int32x4_t
rnd
=
vrnd_away_zero
(
r
);
float32x4_t
frnd
=
vcvtq_f32_s32
(
rnd
);
frnd
=
vsubq_f32
(
frnd
,
r
);
frnd
=
vabsq_f32
(
frnd
);
uint32x4_t
equal_point5
=
vceqq_f32
(
frnd
,
point5
);
int32x4_t
abs_rnd
=
vabsq_s32
(
rnd
);
abs_rnd
=
vandq_s32
(
abs_rnd
,
one
);
uint32x4_t
not_mod2
=
vreinterpretq_u32_s32
(
abs_rnd
);
uint32x4_t
mask
=
vandq_u32
(
equal_point5
,
not_mod2
);
uint32x4_t
more_than_zero
=
vcgtq_s32
(
rnd
,
zero
);
more_than_zero
=
vandq_u32
(
more_than_zero
,
vreinterpretq_u32_s32
(
one
));
mask
=
veorq_u32
(
more_than_zero
,
mask
);
more_than_zero
=
veorq_u32
(
more_than_zero
,
vreinterpretq_u32_s32
(
one
));
mask
=
vaddq_u32
(
more_than_zero
,
mask
);
int32x4_t
smask
=
vreinterpretq_s32_u32
(
mask
);
smask
=
vsubq_s32
(
smask
,
one
);
rnd
=
vaddq_s32
(
rnd
,
smask
);
return
rnd
;
#endif
}
#endif
...
...
src/operators/math/math_func_neon.h
浏览文件 @
244297e8
...
...
@@ -38,6 +38,7 @@ limitations under the License. */
*
* (this is the zlib license)
*/
#pragma once
#include <arm_neon.h>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录