Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
0bdce1d4
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
1 年多 前同步成功
通知
116
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0bdce1d4
编写于
9月 06, 2021
作者:
D
dongshuilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix cpp_infer bugs
上级
3c7f6e4d
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
9 addition
and
31 deletion
+9
-31
deploy/cpp/src/cls.cpp
deploy/cpp/src/cls.cpp
+4
-4
tests/config/cpp_config.txt
tests/config/cpp_config.txt
+2
-2
tests/cpp_config.txt
tests/cpp_config.txt
+0
-24
tests/test.sh
tests/test.sh
+3
-1
未找到文件。
deploy/cpp/src/cls.cpp
浏览文件 @
0bdce1d4
...
...
@@ -57,7 +57,7 @@ double Classifier::Run(cv::Mat &img, std::vector<double> *times) {
cv
::
Mat
resize_img
;
img
.
copyTo
(
srcimg
);
auto
preprocess_start
=
std
::
chrono
::
s
teady
_clock
::
now
();
auto
preprocess_start
=
std
::
chrono
::
s
ystem
_clock
::
now
();
this
->
resize_op_
.
Run
(
img
,
resize_img
,
this
->
resize_short_size_
);
this
->
crop_op_
.
Run
(
resize_img
,
this
->
crop_size_
);
...
...
@@ -92,9 +92,9 @@ double Classifier::Run(cv::Mat &img, std::vector<double> *times) {
max_element
(
out_data
.
begin
(),
out_data
.
end
())
-
out_data
.
begin
();
auto
postprocess_end
=
std
::
chrono
::
system_clock
::
now
();
// std::chrono::duration<float> preprocess_diff = preprocess_end -
//
preprocess_start;
//
times->push_back(double(preprocess_diff.count() * 1000));
std
::
chrono
::
duration
<
float
>
preprocess_diff
=
preprocess_end
-
preprocess_start
;
times
->
push_back
(
double
(
preprocess_diff
.
count
()
*
1000
));
std
::
chrono
::
duration
<
float
>
inference_diff
=
infer_end
-
infer_start
;
double
inference_cost_time
=
double
(
inference_diff
.
count
()
*
1000
);
times
->
push_back
(
inference_cost_time
);
...
...
tests/config/cpp_config.txt
浏览文件 @
0bdce1d4
...
...
@@ -10,8 +10,8 @@ gpu_mem 2000
# use_fp16 0
# cls config
cls_model_path inference/inference.pdmodel
cls_params_path inference/inference.pdiparams
cls_model_path
../
inference/inference.pdmodel
cls_params_path
../
inference/inference.pdiparams
resize_short_size 256
crop_size 224
...
...
tests/cpp_config.txt
已删除
100755 → 0
浏览文件 @
3c7f6e4d
# model load config
gpu_id 0
gpu_mem 2000
# whole chain test will add following config
# use_gpu 0
# cpu_threads 10
# use_mkldnn 1
# use_tensorrt 0
# use_fp16 0
# cls config
cls_model_path inference/inference.pdmodel
cls_params_path inference/inference.pdiparams
resize_short_size 256
crop_size 224
# for log env info
benchmark 1
eval "$cpp_use_gpu_key $use_gpu"
eval "$cpp_use_gpu_key" "$use_gpu"
${cpp_use_gpu_key} ${use_gpu}
1 2
1 2
tests/test.sh
浏览文件 @
0bdce1d4
...
...
@@ -182,6 +182,7 @@ function func_cpp_inference(){
echo
"
${
cpp_cpu_threads_key
}
${
threads
}
"
>>
cpp_config.txt
echo
"
${
cpp_use_mkldnn_key
}
${
use_mkldnn
}
"
>>
cpp_config.txt
echo
"
${
cpp_use_tensorrt_key
}
0"
>>
cpp_config.txt
echo
"
${
cpp_use_fp16_key
}
0"
>>
cpp_config.txt
command
=
"
${
_script
}
cpp_config.txt
${
_img_dir
}
>
${
_save_log_path
}
2>&1 "
eval
$command
last_status
=
${
PIPESTATUS
[0]
}
...
...
@@ -203,7 +204,8 @@ function func_cpp_inference(){
echo
"
${
cpp_use_gpu_key
}
${
use_gpu
}
"
>>
cpp_config.txt
echo
"
${
cpp_cpu_threads_key
}
${
threads
}
"
>>
cpp_config.txt
echo
"
${
cpp_use_mkldnn_key
}
${
use_mkldnn
}
"
>>
cpp_config.txt
echo
"
${
cpp_use_tensorrt_key
}
${
precision
}
"
>>
cpp_config.txt
echo
"
${
cpp_use_tensorrt_key
}
${
use_trt
}
"
>>
cpp_config.txt
echo
"
${
cpp_use_fp16_key
}
${
precision
}
"
>>
cpp_config.txt
command
=
"
${
_script
}
cpp_config.txt
${
_img_dir
}
>
${
_save_log_path
}
2>&1 "
eval
$command
last_status
=
${
PIPESTATUS
[0]
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录