Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
ad5087c9
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看板
提交
ad5087c9
编写于
12月 03, 2018
作者:
H
hjchen2
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Optimize int8 depthwise conv
上级
de37013f
变更
4
展开全部
隐藏空白更改
内联
并排
Showing
4 changed file
with
447 addition
and
95 deletion
+447
-95
src/operators/kernel/arm/quantize_kernel.cpp
src/operators/kernel/arm/quantize_kernel.cpp
+2
-2
src/operators/kernel/central-arm-func/conv_arm_func.h
src/operators/kernel/central-arm-func/conv_arm_func.h
+2
-2
src/operators/math/depthwise_conv3x3.h
src/operators/math/depthwise_conv3x3.h
+2
-2
src/operators/math/depthwise_conv3x3_int8.cpp
src/operators/math/depthwise_conv3x3_int8.cpp
+441
-89
未找到文件。
src/operators/kernel/arm/quantize_kernel.cpp
浏览文件 @
ad5087c9
...
@@ -88,8 +88,8 @@ template <>
...
@@ -88,8 +88,8 @@ template <>
inline
int8_t
Round
<
ROUND_NEAREST_TO_EVEN
>
(
const
float
&
x
)
{
inline
int8_t
Round
<
ROUND_NEAREST_TO_EVEN
>
(
const
float
&
x
)
{
float
v
=
std
::
round
(
x
);
float
v
=
std
::
round
(
x
);
int32_t
q
=
static_cast
<
int32_t
>
(
v
);
int32_t
q
=
static_cast
<
int32_t
>
(
v
);
if
(
abs
(
abs
(
q
-
v
)
-
0.5
)
<=
0
)
{
if
(
std
::
abs
(
std
::
abs
(
q
-
v
)
-
0.5
)
<=
0
)
{
if
(
abs
(
q
)
%
2
!=
0
)
{
if
(
std
::
abs
(
q
)
%
2
!=
0
)
{
q
=
q
+
((
q
>
0
)
?
-
1
:
1
);
q
=
q
+
((
q
>
0
)
?
-
1
:
1
);
}
}
}
}
...
...
src/operators/kernel/central-arm-func/conv_arm_func.h
浏览文件 @
ad5087c9
...
@@ -180,10 +180,10 @@ inline void DepthwiseConv3x3(const ConvParam<CPU> ¶m) {
...
@@ -180,10 +180,10 @@ inline void DepthwiseConv3x3(const ConvParam<CPU> ¶m) {
Tensor
in_batch
=
input
->
Slice
(
i
,
i
+
1
);
Tensor
in_batch
=
input
->
Slice
(
i
,
i
+
1
);
Tensor
out_batch
=
output
->
Slice
(
i
,
i
+
1
);
Tensor
out_batch
=
output
->
Slice
(
i
,
i
+
1
);
if
(
strides
[
0
]
==
1
)
{
if
(
strides
[
0
]
==
1
)
{
math
::
DepthwiseConv3x3
s
1
<
Itype
,
Otype
>
(
in_batch
,
*
filter
,
paddings
,
math
::
DepthwiseConv3x3
S
1
<
Itype
,
Otype
>
(
in_batch
,
*
filter
,
paddings
,
&
out_batch
);
&
out_batch
);
}
else
if
(
strides
[
0
]
==
2
)
{
}
else
if
(
strides
[
0
]
==
2
)
{
math
::
DepthwiseConv3x3
s
2
<
Itype
,
Otype
>
(
in_batch
,
*
filter
,
paddings
,
math
::
DepthwiseConv3x3
S
2
<
Itype
,
Otype
>
(
in_batch
,
*
filter
,
paddings
,
&
out_batch
);
&
out_batch
);
}
else
{
}
else
{
// math::DepthwiseConv3x3<Itype, Otype>(input_pad, *filter,
// math::DepthwiseConv3x3<Itype, Otype>(input_pad, *filter,
...
...
src/operators/math/depthwise_conv3x3.h
浏览文件 @
ad5087c9
...
@@ -74,13 +74,13 @@ void DepthwiseConv3x3s2p0(const framework::Tensor *input,
...
@@ -74,13 +74,13 @@ void DepthwiseConv3x3s2p0(const framework::Tensor *input,
// framework::Tensor *output);
// framework::Tensor *output);
template
<
typename
Itype
,
typename
Otype
>
template
<
typename
Itype
,
typename
Otype
>
void
DepthwiseConv3x3
s
1
(
const
framework
::
Tensor
&
input
,
void
DepthwiseConv3x3
S
1
(
const
framework
::
Tensor
&
input
,
const
framework
::
Tensor
&
filter
,
const
framework
::
Tensor
&
filter
,
const
std
::
vector
<
int
>
&
paddings
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
framework
::
Tensor
*
output
);
template
<
typename
Itype
,
typename
Otype
>
template
<
typename
Itype
,
typename
Otype
>
void
DepthwiseConv3x3
s
2
(
const
framework
::
Tensor
&
input
,
void
DepthwiseConv3x3
S
2
(
const
framework
::
Tensor
&
input
,
const
framework
::
Tensor
&
filter
,
const
framework
::
Tensor
&
filter
,
const
std
::
vector
<
int
>
&
paddings
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
framework
::
Tensor
*
output
);
...
...
src/operators/math/depthwise_conv3x3_int8.cpp
浏览文件 @
ad5087c9
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录