Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
e0d94147
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看板
提交
e0d94147
编写于
5月 07, 2020
作者:
C
chenjiaoAngel
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix v7 build bug
上级
9a273b81
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
44 addition
and
23 deletion
+44
-23
lite/backends/arm/math/gemm_prepacked_int8.cc
lite/backends/arm/math/gemm_prepacked_int8.cc
+3
-3
lite/backends/arm/math/gemv_arm_int8.cc
lite/backends/arm/math/gemv_arm_int8.cc
+18
-17
lite/tests/math/conv_int8_compute_test.cc
lite/tests/math/conv_int8_compute_test.cc
+17
-3
lite/tests/math/gemv_int8_compute_test.cc
lite/tests/math/gemv_int8_compute_test.cc
+6
-0
未找到文件。
lite/backends/arm/math/gemm_prepacked_int8.cc
浏览文件 @
e0d94147
...
...
@@ -1919,7 +1919,7 @@ inline void gemm_sdot_int8_kernel(const int8_t* a_ptr,
"vmax.f32 q3,q3, q15\n"
/* relu */
\
"vmax.f32 q4,q4, q15\n"
/* relu */
\
"vmax.f32 q5,q5, q15\n"
/* relu */
\
"b
:
9f\n"
"b
9f\n"
#define GEMM_INT8_RELU6 \
/* do relu6 */
\
...
...
@@ -1944,7 +1944,7 @@ inline void gemm_sdot_int8_kernel(const int8_t* a_ptr,
"vmin.f32 q3,q3, q14\n"
/* relu6 */
\
"vmin.f32 q4,q4, q14\n"
/* relu6 */
\
"vmin.f32 q5,q5, q14\n"
/* relu6 */
\
"b
:
9f\n"
"b
9f\n"
#define GEMM_INT8_LEAKY_RELU \
/* do relu6 */
\
...
...
lite/backends/arm/math/gemv_arm_int8.cc
浏览文件 @
e0d94147
...
...
@@ -112,33 +112,34 @@ inline void write_gemv_out(const int* in,
float
alpha
)
{
if
(
bias
)
{
for
(
int
i
=
0
;
i
<
size
;
++
i
)
{
out
[
0
]
=
saturate_cast
<
signed
char
>
(
roundf
(
*
(
in
++
)
*
*
(
scale
++
)
+
*
(
bias
++
)));
out
[
0
]
=
out
[
0
]
<
-
127
?
-
127
:
out
[
0
];
// -127 - 127
float
tmp
=
*
(
in
++
)
*
*
(
scale
++
)
+
*
(
bias
++
);
if
(
flag_act
)
{
if
(
act
==
lite_api
::
ActivationType
::
kRelu
)
{
out
[
0
]
=
out
[
0
]
>
0.
f
?
out
[
0
]
:
0.
f
;
tmp
=
tmp
>
0.
f
?
tmp
:
0.
f
;
}
else
if
(
act
==
lite_api
::
ActivationType
::
kRelu6
)
{
out
[
0
]
=
out
[
0
]
>
0.
f
?
(
out
[
0
]
>
six
?
six
:
out
[
0
]
)
:
0.
f
;
tmp
=
tmp
>
0.
f
?
(
tmp
>
six
?
six
:
tmp
)
:
0.
f
;
}
else
if
(
act
==
lite_api
::
ActivationType
::
kLeakyRelu
)
{
out
[
0
]
=
out
[
0
]
>
0.
f
?
out
[
0
]
:
out
[
0
]
*
alpha
;
tmp
=
tmp
>
0.
f
?
tmp
:
(
tmp
*
alpha
)
;
}
}
out
[
0
]
=
saturate_cast
<
signed
char
>
(
roundf
(
tmp
));
out
[
0
]
=
out
[
0
]
<
-
127
?
-
127
:
out
[
0
];
// -127 - 127
out
++
;
}
}
else
{
for
(
int
i
=
0
;
i
<
size
;
++
i
)
{
out
[
0
]
=
saturate_cast
<
signed
char
>
(
roundf
(
*
(
in
++
)
*
*
(
scale
++
)));
out
[
0
]
=
out
[
0
]
<
-
127
?
-
127
:
out
[
0
];
// -127 - 127
float
tmp
=
*
(
in
++
)
*
*
(
scale
++
);
if
(
flag_act
)
{
if
(
act
==
lite_api
::
ActivationType
::
kRelu
)
{
out
[
0
]
=
out
[
0
]
>
0.
f
?
out
[
0
]
:
0.
f
;
tmp
=
tmp
>
0.
f
?
tmp
:
0.
f
;
}
else
if
(
act
==
lite_api
::
ActivationType
::
kRelu6
)
{
out
[
0
]
=
out
[
0
]
>
0.
f
?
(
out
[
0
]
>
six
?
six
:
out
[
0
]
)
:
0.
f
;
tmp
=
tmp
>
0.
f
?
(
tmp
>
six
?
six
:
tmp
)
:
0.
f
;
}
else
if
(
act
==
lite_api
::
ActivationType
::
kLeakyRelu
)
{
out
[
0
]
=
out
[
0
]
>
0.
f
?
out
[
0
]
:
out
[
0
]
*
alpha
;
tmp
=
tmp
>
0.
f
?
tmp
:
tmp
*
alpha
;
}
}
out
[
0
]
=
saturate_cast
<
signed
char
>
(
roundf
(
tmp
));
out
[
0
]
=
out
[
0
]
<
-
127
?
-
127
:
out
[
0
];
// -127 - 127
out
++
;
}
}
...
...
@@ -711,14 +712,14 @@ bool gemv_int8<float>(const int8_t* A,
#if defined(__aarch64__) && defined(WITH_ARM_DOTPROD)
if
(
ctx
->
has_dot
())
{
return
gemv_int8_sdot
<
float
>
(
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
six
,
alpha
);
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
act
,
six
,
alpha
);
}
else
{
return
gemv_int8_oth
<
float
>
(
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
six
,
alpha
);
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
act
,
six
,
alpha
);
}
#else
return
gemv_int8_oth
<
float
>
(
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
six
,
alpha
);
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
act
,
six
,
alpha
);
#endif
}
...
...
@@ -740,14 +741,14 @@ bool gemv_int8<int8_t>(const int8_t* A,
#if defined(__aarch64__) && defined(WITH_ARM_DOTPROD)
if
(
ctx
->
has_dot
())
{
return
gemv_int8_sdot
<
int8_t
>
(
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
six
,
alpha
);
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
act
,
six
,
alpha
);
}
else
{
return
gemv_int8_oth
<
int8_t
>
(
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
six
,
alpha
);
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
act
,
six
,
alpha
);
}
#else
return
gemv_int8_oth
<
int8_t
>
(
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
six
,
alpha
);
A
,
x
,
y
,
transA
,
M
,
N
,
scale
,
is_bias
,
bias
,
flag_act
,
act
,
six
,
alpha
);
#endif
}
...
...
lite/tests/math/conv_int8_compute_test.cc
浏览文件 @
e0d94147
...
...
@@ -176,13 +176,15 @@ void test_conv_int8(const std::vector<DDim>& input_dims,
act_param
.
active_type
=
(
paddle
::
lite_api
::
ActivationType
)
flag_act
;
// 1-relu, 2-relu6, 4-leakyrelu
if
(
flag_act
==
1
)
{
param
.
fuse_relu
=
true
;
param_fp32_out
.
fuse_relu
=
true
;
param_int8_out
.
fuse_relu
=
true
;
}
else
if
(
flag_act
==
2
)
{
act_param
.
Relu_clipped_coef
=
six
;
}
else
if
(
flag_act
==
4
)
{
act_param
.
Leaky_relu_alpha
=
leakey_relu_scale
;
act_param
.
Leaky_relu_alpha
=
alpha
;
}
param
.
activation_param
=
act_param
;
param_fp32_out
.
activation_param
=
act_param
;
param_int8_out
.
activation_param
=
act_param
;
}
std
::
vector
<
float
>
scale_in
{
1.
f
/
127
};
...
...
@@ -319,6 +321,18 @@ void test_conv_int8(const std::vector<DDim>& input_dims,
1
,
1
,
dim_out
.
production
());
if
(
flag_act
==
2
)
{
// relu6
for
(
int
i
=
0
;
i
<
dim_out
.
production
();
i
++
)
{
dout_basic_int8
[
i
]
=
dout_basic_int8
[
i
]
>
six
?
six
:
dout_basic_int8
[
i
];
}
}
else
if
(
flag_act
==
4
)
{
// leakyRelu
for
(
int
i
=
0
;
i
<
dim_out
.
production
();
i
++
)
{
float
tmp
=
dout_basic_fp32
[
i
]
/
scale_out
.
data
()[
0
];
tmp
=
tmp
>
0
?
tmp
:
tmp
*
alpha
;
dout_basic_int8
[
i
]
=
static_cast
<
int8_t
>
(
roundf
(
tmp
));
dout_basic_int8
[
i
]
=
dout_basic_int8
[
i
]
<
-
127
?
-
127
:
dout_basic_int8
[
i
];
}
}
}
double
gops
=
2.0
*
dim_out
.
production
()
*
dim_in
[
1
]
*
weight_dim
[
2
]
*
...
...
lite/tests/math/gemv_int8_compute_test.cc
浏览文件 @
e0d94147
...
...
@@ -23,6 +23,7 @@
#include "lite/core/profile/timer.h"
#include "lite/core/tensor.h"
#include "lite/tests/utils/tensor_utils.h"
#include "lite/backends/arm/math/saturate.h"
typedef
paddle
::
lite
::
Tensor
Tensor
;
using
paddle
::
lite
::
profile
::
Timer
;
...
...
@@ -154,6 +155,11 @@ bool test_gemv_int8(bool tra,
1
,
1
,
tc_basic_fp32
.
numel
());
if
(
flag_act
==
2
)
{
// relu6
for
(
int
i
=
0
;
i
<
tc_basic_int8
.
numel
();
i
++
)
{
dc_basic_int8
[
i
]
=
dc_basic_int8
[
i
]
>
six
?
six
:
dc_basic_int8
[
i
];
}
}
}
Timer
t0
;
//! compute
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录