Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
840c521b
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
840c521b
编写于
10月 15, 2020
作者:
J
joanna.wozna.intel
提交者:
GitHub
10月 15, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix problem with flags fp32 and int8 (#27954)
上级
5ccaaab8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
15 deletion
+21
-15
paddle/fluid/inference/tests/api/CMakeLists.txt
paddle/fluid/inference/tests/api/CMakeLists.txt
+4
-0
paddle/fluid/inference/tests/api/tester_helper.h
paddle/fluid/inference/tests/api/tester_helper.h
+17
-15
未找到文件。
paddle/fluid/inference/tests/api/CMakeLists.txt
浏览文件 @
840c521b
...
...
@@ -66,6 +66,7 @@ function(inference_analysis_api_int8_test_run TARGET_NAME test_binary model_dir
--infer_data=
${
data_path
}
--warmup_batch_size=
${
WARMUP_BATCH_SIZE
}
--batch_size=50
--enable_int8=true
--cpu_num_threads=
${
CPU_NUM_THREADS_ON_CI
}
--iterations=2
)
endfunction
()
...
...
@@ -81,6 +82,7 @@ function(inference_analysis_api_bfloat16_test_run TARGET_NAME test_binary model_
ARGS --infer_model=
${
model_dir
}
/model
--infer_data=
${
data_path
}
--batch_size=50
--enable_bf16=true
--paddle_num_threads=
${
CPU_NUM_THREADS_ON_CI
}
--iterations=2
)
endfunction
()
...
...
@@ -92,6 +94,7 @@ function(inference_analysis_api_object_dection_int8_test_run TARGET_NAME test_bi
--infer_data=
${
data_path
}
--warmup_batch_size=10
--batch_size=300
--enable_int8=true
--cpu_num_threads=
${
CPU_NUM_THREADS_ON_CI
}
--iterations=1
)
endfunction
()
...
...
@@ -115,6 +118,7 @@ function(inference_analysis_api_quant_test_run TARGET_NAME test_binary fp32_mode
--int8_model=
${
int8_model_dir
}
--infer_data=
${
data_path
}
--batch_size=50
--enable_int8=true
--cpu_num_threads=
${
CPU_NUM_THREADS_ON_CI
}
--with_accuracy_layer=false
--iterations=2
)
...
...
paddle/fluid/inference/tests/api/tester_helper.h
浏览文件 @
840c521b
...
...
@@ -50,8 +50,8 @@ DEFINE_bool(ernie_large, false, "Test ernie large");
DEFINE_bool
(
with_accuracy_layer
,
true
,
"Calculate the accuracy while label is in the input"
);
DEFINE_bool
(
enable_fp32
,
true
,
"Enable FP32 type prediction"
);
DEFINE_bool
(
enable_bf16
,
tru
e
,
"Enable BF16 type prediction"
);
DEFINE_bool
(
enable_int8
,
tru
e
,
"Enable INT8 type prediction"
);
DEFINE_bool
(
enable_bf16
,
fals
e
,
"Enable BF16 type prediction"
);
DEFINE_bool
(
enable_int8
,
fals
e
,
"Enable INT8 type prediction"
);
DEFINE_int32
(
warmup_batch_size
,
100
,
"batch size for quantization warmup"
);
// setting iterations to 0 means processing the whole dataset
DEFINE_int32
(
iterations
,
0
,
"number of batches to process"
);
...
...
@@ -639,8 +639,9 @@ void TestPrediction(const PaddlePredictor::Config *config,
}
}
void
SummarizeAccuracy
(
float
avg_acc_fp32
,
float
avg_acc_int8
,
int
compared_idx
)
{
void
SummarizeAccuracy
(
float
avg_acc_ref
,
float
avg_acc
,
int
compared_idx
)
{
std
::
string
data_type_name
=
"INT8"
;
if
(
FLAGS_enable_bf16
)
data_type_name
=
"BF16"
;
PADDLE_ENFORCE_LE
(
compared_idx
,
2
,
platform
::
errors
::
InvalidArgument
(
...
...
@@ -659,12 +660,12 @@ void SummarizeAccuracy(float avg_acc_fp32, float avg_acc_int8,
LOG
(
INFO
)
<<
"--- Accuracy summary --- "
;
LOG
(
INFO
)
<<
"Accepted "
<<
prefix
<<
"drop threshold: "
<<
FLAGS_quantized_accuracy
<<
". (condition: (FP32_"
<<
prefix
<<
" -
INT8_"
<<
prefix
<<
") <= threshold)"
;
<<
". (condition: (FP32_"
<<
prefix
<<
" -
"
<<
data_type_name
<<
"
_"
<<
prefix
<<
"
) <= threshold)"
;
LOG
(
INFO
)
<<
"FP32: avg "
<<
prefix
<<
std
::
fixed
<<
std
::
setw
(
6
)
<<
std
::
setprecision
(
4
)
<<
avg_acc_
fp32
;
LOG
(
INFO
)
<<
"INT8: avg "
<<
prefix
<<
std
::
fixed
<<
std
::
setw
(
6
)
<<
std
::
set
precision
(
4
)
<<
avg_acc_int8
;
<<
std
::
setprecision
(
4
)
<<
avg_acc_
ref
;
LOG
(
INFO
)
<<
data_type_name
<<
": avg "
<<
prefix
<<
std
::
fixed
<<
std
::
set
w
(
6
)
<<
std
::
setprecision
(
4
)
<<
avg_acc
;
}
void
SummarizePerformance
(
const
char
*
title
,
float
sample
)
{
...
...
@@ -677,8 +678,9 @@ void SummarizePerformance(const char *title, float sample) {
void
SummarizePerformance
(
const
char
*
title_fp32
,
float
sample_latency_fp32
,
const
char
*
title
,
float
sample_latency
)
{
SummarizePerformance
(
title_fp32
,
sample_latency_fp32
);
SummarizePerformance
(
title
,
sample_latency
);
if
(
FLAGS_enable_fp32
)
SummarizePerformance
(
title_fp32
,
sample_latency_fp32
);
if
(
FLAGS_enable_int8
||
FLAGS_enable_bf16
)
SummarizePerformance
(
title
,
sample_latency
);
}
float
CompareAccuracyOne
(
...
...
@@ -733,7 +735,7 @@ void CompareAccuracy(
const
std
::
vector
<
std
::
vector
<
PaddleTensor
>>
&
output_slots_quant
,
const
std
::
vector
<
std
::
vector
<
PaddleTensor
>>
&
output_slots_ref
,
int
compared_idx
)
{
if
((
FLAGS_enable_fp32
&&
FLAGS_enable_int8
)
&&
if
((
FLAGS_enable_fp32
&&
(
FLAGS_enable_int8
||
FLAGS_enable_bf16
)
)
&&
(
output_slots_quant
.
size
()
==
0
||
output_slots_ref
.
size
())
==
0
)
throw
std
::
invalid_argument
(
"CompareAccuracy: output_slots vector is empty."
);
...
...
@@ -741,7 +743,7 @@ void CompareAccuracy(
float
avg_acc_quant
=
0.0
;
float
avg_acc_ref
=
0.0
;
if
(
FLAGS_enable_int8
)
if
(
FLAGS_enable_int8
||
FLAGS_enable_bf16
)
avg_acc_quant
=
CompareAccuracyOne
(
output_slots_quant
,
compared_idx
);
if
(
FLAGS_enable_fp32
)
...
...
@@ -751,9 +753,9 @@ void CompareAccuracy(
if
(
FLAGS_enable_fp32
)
CHECK_GT
(
avg_acc_ref
,
0.0
);
if
(
FLAGS_enable_int8
)
CHECK_GT
(
avg_acc_quant
,
0.0
);
if
(
FLAGS_enable_int8
||
FLAGS_enable_bf16
)
CHECK_GT
(
avg_acc_quant
,
0.0
);
if
(
FLAGS_enable_fp32
&&
FLAGS_enable_int8
)
if
(
FLAGS_enable_fp32
&&
(
FLAGS_enable_int8
||
FLAGS_enable_bf16
)
)
CHECK_LE
(
avg_acc_ref
-
avg_acc_quant
,
FLAGS_quantized_accuracy
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录