Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
a1f28a48
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
a1f28a48
编写于
1月 31, 2023
作者:
Y
Yuanle Liu
提交者:
GitHub
1月 31, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Paddle Inference] change the default values of some gflags (#50074)
上级
3a7e470b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
100 addition
and
77 deletion
+100
-77
paddle/fluid/inference/api/analysis_predictor.cc
paddle/fluid/inference/api/analysis_predictor.cc
+100
-77
未找到文件。
paddle/fluid/inference/api/analysis_predictor.cc
浏览文件 @
a1f28a48
...
...
@@ -17,6 +17,7 @@
#include <glog/logging.h>
#include <algorithm>
#include <cstdlib>
#include <fstream>
#include <memory>
#include <set>
...
...
@@ -1384,13 +1385,6 @@ template <>
std
::
unique_ptr
<
PaddlePredictor
>
CreatePaddlePredictor
<
AnalysisConfig
,
PaddleEngineKind
::
kAnalysis
>
(
const
AnalysisConfig
&
config
)
{
// TODO(NHZlX): Should add the link to the doc of
// paddle_infer::CreatePredictor<paddle_infer::Config>
if
(
config
.
glog_info_disabled
())
{
FLAGS_logtostderr
=
1
;
FLAGS_minloglevel
=
2
;
// GLOG_ERROR
}
VLOG
(
3
)
<<
"create AnalysisConfig"
;
PADDLE_ENFORCE_EQ
(
config
.
is_valid
(),
true
,
...
...
@@ -1403,83 +1397,112 @@ CreatePaddlePredictor<AnalysisConfig, PaddleEngineKind::kAnalysis>(
std
::
call_once
(
custom_operators_registered
,
[]()
{
inference
::
RegisterAllCustomOperator
();
});
if
(
config
.
use_gpu
())
{
static
std
::
once_flag
gflags_initialized
;
static
bool
process_level_allocator_enabled
;
std
::
call_once
(
gflags_initialized
,
[
&
]()
{
std
::
vector
<
std
::
string
>
gflags
;
PADDLE_ENFORCE_GE
(
config
.
memory_pool_init_size_mb
(),
0.
f
,
auto
SetGflags
=
[](
const
AnalysisConfig
&
config
)
{
auto
SetGflag
=
[](
const
char
*
name
,
const
char
*
value
)
{
std
::
string
ret
=
::
GFLAGS_NAMESPACE
::
SetCommandLineOption
(
name
,
value
);
PADDLE_ENFORCE_EQ
(
ret
.
empty
(),
false
,
platform
::
errors
::
InvalidArgument
(
"The size of memory pool should be greater than 0."
));
PADDLE_ENFORCE_GE
(
config
.
gpu_device_id
(),
0
,
platform
::
errors
::
InvalidArgument
(
"Invalid device id (%d). The device id should be greater than 0."
,
config
.
gpu_device_id
()));
gflags
.
push_back
(
"dummy"
);
float
fraction_of_gpu_memory
=
config
.
fraction_of_gpu_memory_for_pool
();
if
(
fraction_of_gpu_memory
>
0.95
f
)
{
LOG
(
ERROR
)
<<
"Allocate too much memory for the GPU memory pool, assigned "
<<
config
.
memory_pool_init_size_mb
()
<<
" MB"
;
LOG
(
ERROR
)
<<
"Try to shink the value by setting "
"AnalysisConfig::EnableGpu(...)"
;
}
"Fail to set gflag: %s, please make sure the gflag exists."
,
name
));
VLOG
(
3
)
<<
"set gflag: --"
<<
name
<<
"="
<<
value
;
};
// TODO(NHZlX): Should add the link to the doc of
// paddle_infer::CreatePredictor<paddle_infer::Config>
if
(
config
.
glog_info_disabled
())
{
FLAGS_logtostderr
=
1
;
FLAGS_minloglevel
=
2
;
// GLOG_ERROR
}
if
(
fraction_of_gpu_memory
>=
0.0
f
||
fraction_of_gpu_memory
<=
0.95
f
)
{
std
::
string
flag
=
"--fraction_of_gpu_memory_to_use="
+
std
::
to_string
(
fraction_of_gpu_memory
);
VLOG
(
3
)
<<
"set flag: "
<<
flag
;
gflags
.
push_back
(
flag
);
}
if
(
config
.
use_gpu
())
{
static
std
::
once_flag
gflags_initialized
;
static
bool
process_level_allocator_enabled
;
std
::
call_once
(
gflags_initialized
,
[
&
]()
{
PADDLE_ENFORCE_GE
(
config
.
memory_pool_init_size_mb
(),
0.
f
,
platform
::
errors
::
InvalidArgument
(
"The size of memory pool should be greater than 0."
));
PADDLE_ENFORCE_GE
(
config
.
gpu_device_id
(),
0
,
platform
::
errors
::
InvalidArgument
(
"Invalid device id (%d). The device id should be "
"greater than 0."
,
config
.
gpu_device_id
()));
float
fraction_of_gpu_memory
=
config
.
fraction_of_gpu_memory_for_pool
();
if
(
fraction_of_gpu_memory
>
0.95
f
)
{
LOG
(
ERROR
)
<<
"Allocate too much memory for the GPU memory pool, assigned "
<<
config
.
memory_pool_init_size_mb
()
<<
" MB"
;
LOG
(
ERROR
)
<<
"Try to shink the value by setting "
"AnalysisConfig::EnableUseGpu(...)"
;
}
if
(
fraction_of_gpu_memory
>=
0.0
f
||
fraction_of_gpu_memory
<=
0.95
f
)
{
std
::
string
value
=
std
::
to_string
(
fraction_of_gpu_memory
);
SetGflag
(
"fraction_of_gpu_memory_to_use"
,
value
.
data
());
}
// TODO(Shixiaowei02): Add a mandatory scheme to use the thread local
// allocator when multi-stream is enabled.
if
(
config
.
thread_local_stream_enabled
())
{
gflags
.
push_back
(
"--allocator_strategy=
thread_local"
);
process_level_allocator_enabled
=
false
;
}
else
{
process_level_allocator_enabled
=
true
;
}
// TODO(Shixiaowei02): Add a mandatory scheme to use the thread local
// allocator when multi-stream is enabled.
if
(
config
.
thread_local_stream_enabled
())
{
SetGflag
(
"allocator_strategy"
,
"
thread_local"
);
process_level_allocator_enabled
=
false
;
}
else
{
process_level_allocator_enabled
=
true
;
}
// support set flags from enviorment.
const
phi
::
ExportedFlagInfoMap
&
env_map
=
phi
::
GetExportedFlagInfoMap
();
std
::
ostringstream
os
;
os
<<
"--tryfromenv="
;
for
(
auto
&
pair
:
env_map
)
{
os
<<
pair
.
second
.
name
<<
","
;
}
auto
tryfromenv_str
=
os
.
str
();
gflags
.
push_back
(
os
.
str
().
substr
(
0
,
tryfromenv_str
.
size
()
-
1
));
if
(
framework
::
InitGflags
(
gflags
))
{
VLOG
(
3
)
<<
"The following gpu analysis configurations only take effect "
"for the first predictor: "
;
for
(
size_t
i
=
1
;
i
<
gflags
.
size
();
++
i
)
{
VLOG
(
3
)
<<
gflags
[
i
];
// for inference, the following default values are better.
if
(
std
::
getenv
(
"FLAGS_conv_workspace_size_limit"
)
==
nullptr
)
{
SetGflag
(
"conv_workspace_size_limit"
,
"32"
);
}
}
else
{
LOG
(
WARNING
)
<<
"The one-time configuration of analysis predictor "
"failed, which may be due to native predictor called "
"first and its configurations taken effect."
;
}
});
if
(
std
::
getenv
(
"FLAGS_initial_cpu_memory_in_mb"
)
==
nullptr
)
{
SetGflag
(
"initial_cpu_memory_in_mb"
,
"0"
);
}
// support set gflags from environment.
std
::
vector
<
std
::
string
>
gflags
;
const
phi
::
ExportedFlagInfoMap
&
env_map
=
phi
::
GetExportedFlagInfoMap
();
std
::
ostringstream
os
;
for
(
auto
&
pair
:
env_map
)
{
os
<<
pair
.
second
.
name
<<
","
;
}
std
::
string
tryfromenv_str
=
os
.
str
();
if
(
!
tryfromenv_str
.
empty
())
{
tryfromenv_str
.
pop_back
();
tryfromenv_str
=
"--tryfromenv="
+
tryfromenv_str
;
gflags
.
push_back
(
tryfromenv_str
);
}
if
(
framework
::
InitGflags
(
gflags
))
{
VLOG
(
3
)
<<
"The following gpu analysis configurations only take effect "
"for the first predictor: "
;
for
(
const
auto
&
gflag
:
gflags
)
{
VLOG
(
3
)
<<
gflag
;
}
}
else
{
LOG
(
WARNING
)
<<
"The one-time configuration of analysis predictor "
"failed, which may be due to native predictor called "
"first and its configurations taken effect."
;
}
});
if
(
config
.
thread_local_stream_enabled
()
&&
process_level_allocator_enabled
)
{
PADDLE_THROW
(
platform
::
errors
::
Fatal
(
"When binding threads and streams, the use of "
"process-level allocators will result in undefined result "
"errors due to memory asynchronous operations."
"The thread and stream binding configuration of all "
"predictors should be the same in a single process."
));
if
(
config
.
thread_local_stream_enabled
()
&&
process_level_allocator_enabled
)
{
PADDLE_THROW
(
platform
::
errors
::
Fatal
(
"When binding threads and streams, the use of "
"process-level allocators will result in undefined result "
"errors due to memory asynchronous operations."
"The thread and stream binding configuration of all "
"predictors should be the same in a single process."
));
}
}
}
};
SetGflags
(
config
);
VLOG
(
3
)
<<
"create AnalysisPredictor"
;
std
::
unique_ptr
<
PaddlePredictor
>
predictor
(
new
AnalysisPredictor
(
config
));
// Each config can only be used for one predictor.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录