Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
7a3bb061
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看板
未验证
提交
7a3bb061
编写于
5月 09, 2019
作者:
Z
Zhaolong Xing
提交者:
GitHub
5月 09, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: (#17279)
1. infernce multi card occupy 2. facebox model inference occupy too much test=develop
上级
50ad9046
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
100 addition
and
2 deletion
+100
-2
paddle/fluid/inference/analysis/passes/CMakeLists.txt
paddle/fluid/inference/analysis/passes/CMakeLists.txt
+2
-0
paddle/fluid/inference/analysis/passes/adjust_cudnn_workspace_size_pass.cc
...rence/analysis/passes/adjust_cudnn_workspace_size_pass.cc
+43
-0
paddle/fluid/inference/analysis/passes/adjust_cudnn_workspace_size_pass.h
...erence/analysis/passes/adjust_cudnn_workspace_size_pass.h
+41
-0
paddle/fluid/inference/analysis/passes/passes.cc
paddle/fluid/inference/analysis/passes/passes.cc
+3
-0
paddle/fluid/inference/analysis/passes/passes.h
paddle/fluid/inference/analysis/passes/passes.h
+2
-0
paddle/fluid/inference/api/analysis_predictor.cc
paddle/fluid/inference/api/analysis_predictor.cc
+7
-1
paddle/fluid/inference/api/paddle_pass_builder.h
paddle/fluid/inference/api/paddle_pass_builder.h
+2
-1
未找到文件。
paddle/fluid/inference/analysis/passes/CMakeLists.txt
浏览文件 @
7a3bb061
...
...
@@ -3,11 +3,13 @@ cc_library(ir_analysis_pass SRCS ir_analysis_pass.cc DEPS analysis_pass argument
cc_library
(
memory_optim_pass SRCS memory_optimize_pass.cc DEPS analysis_pass zero_copy_tensor
)
cc_library
(
ir_params_sync_among_devices_pass SRCS ir_params_sync_among_devices_pass.cc DEPS analysis_pass argument ir_pass_manager
)
cc_library
(
ir_graph_to_program_pass SRCS ir_graph_to_program_pass.cc DEPS analysis_pass graph_to_program_pass
)
cc_library
(
adjust_cudnn_workspace_size_pass SRCS adjust_cudnn_workspace_size_pass.cc DEPS analysis_pass graph_to_program_pass
)
cc_library
(
analysis_passes SRCS passes.cc DEPS
ir_graph_build_pass
ir_analysis_pass
ir_params_sync_among_devices_pass
adjust_cudnn_workspace_size_pass
memory_optim_pass
ir_graph_to_program_pass
)
...
...
paddle/fluid/inference/analysis/passes/adjust_cudnn_workspace_size_pass.cc
0 → 100644
浏览文件 @
7a3bb061
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "paddle/fluid/inference/analysis/passes/adjust_cudnn_workspace_size_pass.h"
namespace
paddle
{
namespace
inference
{
namespace
analysis
{
void
AdjustCudnnWorkSpacePass
::
RunImpl
(
Argument
*
argument
)
{
if
(
!
argument
->
use_gpu
())
return
;
auto
&
graph
=
argument
->
main_graph
();
auto
nodes
=
graph
.
Nodes
();
const
int
cudnn_workspace_size_MB
=
64
;
const
std
::
string
attr_name
=
"workspace_size_MB"
;
for
(
auto
&
node
:
nodes
)
{
if
(
!
node
->
IsOp
())
continue
;
auto
*
op_desc
=
node
->
Op
();
if
(
!
op_desc
->
HasAttr
(
attr_name
))
continue
;
op_desc
->
SetAttr
(
attr_name
,
cudnn_workspace_size_MB
);
op_desc
->
Flush
();
}
}
std
::
string
AdjustCudnnWorkSpacePass
::
repr
()
const
{
return
"adjust-cudnn-work-space-pass"
;
}
}
// namespace analysis
}
// namespace inference
}
// namespace paddle
paddle/fluid/inference/analysis/passes/adjust_cudnn_workspace_size_pass.h
0 → 100644
浏览文件 @
7a3bb061
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <string>
#include <vector>
#include "paddle/fluid/framework/ir/fuse_pass_base.h"
#include "paddle/fluid/framework/scope.h"
#include "paddle/fluid/inference/analysis/analysis_pass.h"
#include "paddle/fluid/platform/place.h"
namespace
paddle
{
namespace
inference
{
namespace
analysis
{
/*
* The default cudnn workspace is 4G, we set it to 64M in this pass, which
* is applicable for most inference tasks.
*/
class
AdjustCudnnWorkSpacePass
:
public
AnalysisPass
{
public:
void
RunImpl
(
Argument
*
argument
)
override
;
std
::
string
repr
()
const
override
;
};
}
// namespace analysis
}
// namespace inference
}
// namespace paddle
paddle/fluid/inference/analysis/passes/passes.cc
浏览文件 @
7a3bb061
...
...
@@ -13,6 +13,7 @@
// limitations under the License.
#include "paddle/fluid/inference/analysis/passes/passes.h"
#include "paddle/fluid/inference/analysis/passes/adjust_cudnn_workspace_size_pass.h"
#include "paddle/fluid/inference/analysis/passes/ir_analysis_pass.h"
#include "paddle/fluid/inference/analysis/passes/ir_graph_build_pass.h"
#include "paddle/fluid/inference/analysis/passes/ir_graph_to_program_pass.h"
...
...
@@ -35,6 +36,8 @@ PassRegistry::PassRegistry() {
passes_
.
emplace
(
"ir_params_sync_among_devices_pass"
,
std
::
unique_ptr
<
AnalysisPass
>
(
new
IrParamsSyncAmongDevicesPass
));
passes_
.
emplace
(
"adjust_cudnn_workspace_size_pass"
,
std
::
unique_ptr
<
AnalysisPass
>
(
new
AdjustCudnnWorkSpacePass
));
passes_
.
emplace
(
"ir_graph_to_program_pass"
,
std
::
unique_ptr
<
IrGraphToProgramPass
>
(
new
IrGraphToProgramPass
));
...
...
paddle/fluid/inference/analysis/passes/passes.h
浏览文件 @
7a3bb061
...
...
@@ -14,7 +14,9 @@
#pragma once
#include <memory>
#include <string>
#include <unordered_map>
#include "paddle/fluid/inference/analysis/analysis_pass.h"
namespace
paddle
{
...
...
paddle/fluid/inference/api/analysis_predictor.cc
浏览文件 @
7a3bb061
...
...
@@ -120,7 +120,11 @@ bool AnalysisPredictor::PrepareScope(
scope_
=
parent_scope
;
status_is_cloned_
=
true
;
}
else
{
paddle
::
framework
::
InitDevices
(
false
);
if
(
config_
.
use_gpu_
)
{
paddle
::
framework
::
InitDevices
(
false
,
{
config_
.
device_id_
});
}
else
{
paddle
::
framework
::
InitDevices
(
false
,
{});
}
scope_
.
reset
(
new
paddle
::
framework
::
Scope
());
status_is_cloned_
=
false
;
}
...
...
@@ -459,6 +463,8 @@ std::unique_ptr<PaddlePredictor> CreatePaddlePredictor<
std
::
string
flag
=
"--fraction_of_gpu_memory_to_use="
+
std
::
to_string
(
fraction_of_gpu_memory
);
flags
.
push_back
(
flag
);
flags
.
push_back
(
"--selected_gpus="
+
std
::
to_string
(
config
.
gpu_device_id
()));
VLOG
(
3
)
<<
"set flag: "
<<
flag
;
framework
::
InitGflags
(
flags
);
}
...
...
paddle/fluid/inference/api/paddle_pass_builder.h
浏览文件 @
7a3bb061
...
...
@@ -73,7 +73,8 @@ class PaddlePassBuilder {
protected:
std
::
vector
<
std
::
string
>
analysis_passes_
{
{
"ir_graph_build_pass"
,
"ir_analysis_pass"
,
"ir_params_sync_among_devices_pass"
}};
"ir_params_sync_among_devices_pass"
,
"adjust_cudnn_workspace_size_pass"
}};
std
::
vector
<
std
::
string
>
passes_
;
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录