Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
ec6e0a2c
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看板
未验证
提交
ec6e0a2c
编写于
2月 02, 2023
作者:
H
Hui Zhang
提交者:
GitHub
2月 02, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
jit layer optimzer model param memory usage (#50135)
* jit layer support multi thread
上级
6edc7bba
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
53 addition
and
43 deletion
+53
-43
paddle/fluid/jit/engine/interpreter_engine.cc
paddle/fluid/jit/engine/interpreter_engine.cc
+4
-3
paddle/fluid/jit/engine/interpreter_engine.h
paddle/fluid/jit/engine/interpreter_engine.h
+2
-2
paddle/fluid/jit/engine/predictor_engine.cc
paddle/fluid/jit/engine/predictor_engine.cc
+15
-11
paddle/fluid/jit/engine/predictor_engine.h
paddle/fluid/jit/engine/predictor_engine.h
+2
-1
paddle/fluid/jit/function_utils.cc
paddle/fluid/jit/function_utils.cc
+3
-3
paddle/fluid/jit/function_utils.h
paddle/fluid/jit/function_utils.h
+2
-2
paddle/fluid/jit/layer.cc
paddle/fluid/jit/layer.cc
+4
-4
paddle/fluid/jit/layer.h
paddle/fluid/jit/layer.h
+4
-4
paddle/fluid/jit/serializer.cc
paddle/fluid/jit/serializer.cc
+15
-11
paddle/fluid/jit/serializer.h
paddle/fluid/jit/serializer.h
+2
-2
未找到文件。
paddle/fluid/jit/engine/interpreter_engine.cc
浏览文件 @
ec6e0a2c
...
@@ -25,9 +25,10 @@
...
@@ -25,9 +25,10 @@
namespace
paddle
{
namespace
paddle
{
namespace
jit
{
namespace
jit
{
InterpreterEngine
::
InterpreterEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
InterpreterEngine
::
InterpreterEngine
(
const
VariableMap
&
params_dict
,
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
const
phi
::
Place
&
place
)
const
std
::
shared_ptr
<
VariableMap
>
&
params_dict
,
const
phi
::
Place
&
place
)
:
info_
(
info
),
params_dict_
(
params_dict
),
place_
(
place
)
{
:
info_
(
info
),
params_dict_
(
params_dict
),
place_
(
place
)
{
info_
->
RemoveDescFeedFetch
();
info_
->
RemoveDescFeedFetch
();
PADDLE_ENFORCE_GT
(
PADDLE_ENFORCE_GT
(
...
...
paddle/fluid/jit/engine/interpreter_engine.h
浏览文件 @
ec6e0a2c
...
@@ -36,7 +36,7 @@ using InterpreterCore = framework::InterpreterCore;
...
@@ -36,7 +36,7 @@ using InterpreterCore = framework::InterpreterCore;
class
InterpreterEngine
:
public
BaseEngine
{
class
InterpreterEngine
:
public
BaseEngine
{
public:
public:
InterpreterEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
InterpreterEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
const
VariableMap
&
params_dict
,
const
std
::
shared_ptr
<
VariableMap
>
&
params_dict
,
const
phi
::
Place
&
place
);
const
phi
::
Place
&
place
);
~
InterpreterEngine
()
noexcept
{}
~
InterpreterEngine
()
noexcept
{}
...
@@ -54,7 +54,7 @@ class InterpreterEngine : public BaseEngine {
...
@@ -54,7 +54,7 @@ class InterpreterEngine : public BaseEngine {
private:
private:
std
::
shared_ptr
<
FunctionInfo
>
info_
;
std
::
shared_ptr
<
FunctionInfo
>
info_
;
VariableMap
params_dict_
;
std
::
shared_ptr
<
VariableMap
>
params_dict_
;
framework
::
Scope
scope_
;
framework
::
Scope
scope_
;
phi
::
Place
place_
;
phi
::
Place
place_
;
std
::
shared_ptr
<
framework
::
InterpreterCore
>
inner_interpreter_
;
std
::
shared_ptr
<
framework
::
InterpreterCore
>
inner_interpreter_
;
...
...
paddle/fluid/jit/engine/predictor_engine.cc
浏览文件 @
ec6e0a2c
...
@@ -27,11 +27,15 @@ static bool PaddleTensorToDenseTensor(const PaddleTensor &pt,
...
@@ -27,11 +27,15 @@ static bool PaddleTensorToDenseTensor(const PaddleTensor &pt,
DenseTensor
*
t
,
DenseTensor
*
t
,
const
platform
::
Place
&
place
);
const
platform
::
Place
&
place
);
PredictorEngine
::
PredictorEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
PredictorEngine
::
PredictorEngine
(
const
VariableMap
&
params_dict
,
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
const
phi
::
Place
&
place
)
const
std
::
shared_ptr
<
VariableMap
>
&
params_dict
,
:
info_
(
info
),
scope_
(
new
framework
::
Scope
()),
place_
(
place
)
{
const
phi
::
Place
&
place
)
utils
::
ShareParamsIntoScope
(
info_
->
ParamNames
(),
params_dict
,
scope_
.
get
());
:
info_
(
info
),
params_dict_
(
params_dict
),
scope_
(
new
framework
::
Scope
()),
place_
(
place
)
{
utils
::
ShareParamsIntoScope
(
info_
->
ParamNames
(),
params_dict_
,
scope_
.
get
());
VLOG
(
6
)
<<
framework
::
GenScopeTreeDebugInfo
(
scope_
.
get
());
VLOG
(
6
)
<<
framework
::
GenScopeTreeDebugInfo
(
scope_
.
get
());
// TODO(Aurelius84): Expose AnalysisConfig to user.
// TODO(Aurelius84): Expose AnalysisConfig to user.
...
@@ -66,6 +70,12 @@ PredictorEngine::PredictorEngine(
...
@@ -66,6 +70,12 @@ PredictorEngine::PredictorEngine(
predictor_
(
std
::
dynamic_pointer_cast
<
AnalysisPredictor
,
PaddlePredictor
>
(
predictor_
(
std
::
dynamic_pointer_cast
<
AnalysisPredictor
,
PaddlePredictor
>
(
predictor
))
{}
predictor
))
{}
std
::
unique_ptr
<
BaseEngine
>
PredictorEngine
::
Clone
(
void
*
stream
)
{
auto
*
x
=
new
PredictorEngine
(
info_
,
scope_
,
place_
,
std
::
move
(
predictor_
->
Clone
(
stream
)));
return
std
::
unique_ptr
<
BaseEngine
>
(
x
);
}
std
::
vector
<
Tensor
>
PredictorEngine
::
operator
()(
std
::
vector
<
Tensor
>
PredictorEngine
::
operator
()(
const
std
::
vector
<
Tensor
>
&
inputs
)
{
const
std
::
vector
<
Tensor
>
&
inputs
)
{
auto
dense_tensors
=
utils
::
ToDenseTensors
(
inputs
);
auto
dense_tensors
=
utils
::
ToDenseTensors
(
inputs
);
...
@@ -199,11 +209,5 @@ static bool PaddleTensorToDenseTensor(const PaddleTensor &pt,
...
@@ -199,11 +209,5 @@ static bool PaddleTensorToDenseTensor(const PaddleTensor &pt,
return
true
;
return
true
;
}
}
std
::
unique_ptr
<
BaseEngine
>
PredictorEngine
::
Clone
(
void
*
stream
)
{
auto
*
x
=
new
PredictorEngine
(
info_
,
scope_
,
place_
,
std
::
move
(
predictor_
->
Clone
(
stream
)));
return
std
::
unique_ptr
<
BaseEngine
>
(
x
);
}
}
// namespace jit
}
// namespace jit
}
// namespace paddle
}
// namespace paddle
paddle/fluid/jit/engine/predictor_engine.h
浏览文件 @
ec6e0a2c
...
@@ -31,7 +31,7 @@ namespace jit {
...
@@ -31,7 +31,7 @@ namespace jit {
class
PredictorEngine
:
public
BaseEngine
{
class
PredictorEngine
:
public
BaseEngine
{
public:
public:
PredictorEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
PredictorEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
const
VariableMap
&
params_dict
,
const
std
::
shared_ptr
<
VariableMap
>
&
params_dict
,
const
phi
::
Place
&
place
);
const
phi
::
Place
&
place
);
PredictorEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
PredictorEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
...
@@ -50,6 +50,7 @@ class PredictorEngine : public BaseEngine {
...
@@ -50,6 +50,7 @@ class PredictorEngine : public BaseEngine {
private:
private:
std
::
shared_ptr
<
FunctionInfo
>
info_
;
std
::
shared_ptr
<
FunctionInfo
>
info_
;
std
::
shared_ptr
<
VariableMap
>
params_dict_
;
std
::
shared_ptr
<
framework
::
Scope
>
scope_
;
std
::
shared_ptr
<
framework
::
Scope
>
scope_
;
phi
::
Place
place_
;
phi
::
Place
place_
;
std
::
shared_ptr
<
AnalysisPredictor
>
predictor_
;
std
::
shared_ptr
<
AnalysisPredictor
>
predictor_
;
...
...
paddle/fluid/jit/function_utils.cc
浏览文件 @
ec6e0a2c
...
@@ -71,18 +71,18 @@ void ShareIntoScope(const std::vector<std::string> &ordered_input_names,
...
@@ -71,18 +71,18 @@ void ShareIntoScope(const std::vector<std::string> &ordered_input_names,
}
}
void
ShareParamsIntoScope
(
const
std
::
vector
<
std
::
string
>
&
param_names
,
void
ShareParamsIntoScope
(
const
std
::
vector
<
std
::
string
>
&
param_names
,
const
VariableMap
&
params_dict
,
const
std
::
shared_ptr
<
VariableMap
>
&
params_dict
,
framework
::
Scope
*
scope
)
{
framework
::
Scope
*
scope
)
{
for
(
size_t
i
=
0
;
i
<
param_names
.
size
();
++
i
)
{
for
(
size_t
i
=
0
;
i
<
param_names
.
size
();
++
i
)
{
std
::
string
name
=
param_names
[
i
];
std
::
string
name
=
param_names
[
i
];
PADDLE_ENFORCE_EQ
(
params_dict
.
count
(
name
),
PADDLE_ENFORCE_EQ
(
params_dict
->
count
(
name
),
1
,
1
,
phi
::
errors
::
InvalidArgument
(
phi
::
errors
::
InvalidArgument
(
"Parameter named %s is not existed in params_dict. "
"Parameter named %s is not existed in params_dict. "
"Please check that your model was saved correctly"
,
"Please check that your model was saved correctly"
,
name
));
name
));
auto
&
param
=
params_dict
.
find
(
name
)
->
second
;
auto
&
param
=
params_dict
->
find
(
name
)
->
second
;
auto
&
dense_tensor
=
param
->
Get
<
DenseTensor
>
();
auto
&
dense_tensor
=
param
->
Get
<
DenseTensor
>
();
auto
*
var
=
scope
->
Var
(
name
);
auto
*
var
=
scope
->
Var
(
name
);
auto
*
dst_tensor
=
var
->
GetMutable
<
DenseTensor
>
();
auto
*
dst_tensor
=
var
->
GetMutable
<
DenseTensor
>
();
...
...
paddle/fluid/jit/function_utils.h
浏览文件 @
ec6e0a2c
...
@@ -51,14 +51,14 @@ void ShareIntoScope(const std::vector<std::string> &ordered_input_names,
...
@@ -51,14 +51,14 @@ void ShareIntoScope(const std::vector<std::string> &ordered_input_names,
framework
::
Scope
*
scope
);
framework
::
Scope
*
scope
);
void
ShareParamsIntoScope
(
const
std
::
vector
<
std
::
string
>
&
param_names
,
void
ShareParamsIntoScope
(
const
std
::
vector
<
std
::
string
>
&
param_names
,
const
VariableMap
&
params_dict
,
const
std
::
shared_ptr
<
VariableMap
>
&
params_dict
,
framework
::
Scope
*
scope
);
framework
::
Scope
*
scope
);
void
RemoveFeedFetch
(
framework
::
ProgramDesc
*
program_desc
);
void
RemoveFeedFetch
(
framework
::
ProgramDesc
*
program_desc
);
template
<
typename
T
>
template
<
typename
T
>
std
::
shared_ptr
<
T
>
MakeEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
std
::
shared_ptr
<
T
>
MakeEngine
(
const
std
::
shared_ptr
<
FunctionInfo
>
&
info
,
const
VariableMap
&
params_dict
,
const
std
::
shared_ptr
<
VariableMap
>
&
params_dict
,
const
phi
::
Place
&
place
)
{
const
phi
::
Place
&
place
)
{
return
std
::
make_shared
<
T
>
(
info
,
params_dict
,
place
);
return
std
::
make_shared
<
T
>
(
info
,
params_dict
,
place
);
}
}
...
...
paddle/fluid/jit/layer.cc
浏览文件 @
ec6e0a2c
...
@@ -26,8 +26,8 @@
...
@@ -26,8 +26,8 @@
namespace
paddle
{
namespace
paddle
{
namespace
jit
{
namespace
jit
{
Layer
::
Layer
(
const
VariableMap
&
params_map
,
Layer
::
Layer
(
const
std
::
shared_ptr
<
VariableMap
>
&
params_map
,
const
VariableMap
&
attrs_map
,
const
std
::
shared_ptr
<
VariableMap
>
&
attrs_map
,
const
FunctionInfoMap
&
info_map
,
const
FunctionInfoMap
&
info_map
,
const
phi
::
Place
&
place
)
const
phi
::
Place
&
place
)
:
params_map_
(
params_map
),
:
params_map_
(
params_map
),
...
@@ -80,12 +80,12 @@ std::vector<std::string> Layer::FunctionNames() const {
...
@@ -80,12 +80,12 @@ std::vector<std::string> Layer::FunctionNames() const {
#define PD_SPECIALZE_ATTRIBUTE_TYPE(T) \
#define PD_SPECIALZE_ATTRIBUTE_TYPE(T) \
template <> \
template <> \
T Layer::Attribute<T>(const std::string& name) const { \
T Layer::Attribute<T>(const std::string& name) const { \
if (attrs_map_
.find(name) == attrs_map_.end()) {
\
if (attrs_map_
->find(name) == attrs_map_->end()) {
\
PADDLE_THROW(phi::errors::NotFound( \
PADDLE_THROW(phi::errors::NotFound( \
"Attribute can not found %s, please check if it exists.")); \
"Attribute can not found %s, please check if it exists.")); \
return T(); \
return T(); \
} \
} \
auto var = attrs_map_
.at(name);
\
auto var = attrs_map_
->at(name);
\
T ret = var->Get<T>(); \
T ret = var->Get<T>(); \
return ret; \
return ret; \
}
}
...
...
paddle/fluid/jit/layer.h
浏览文件 @
ec6e0a2c
...
@@ -43,8 +43,8 @@ using FunctionInfoMap =
...
@@ -43,8 +43,8 @@ using FunctionInfoMap =
class
Layer
{
class
Layer
{
public:
public:
Layer
(
const
VariableMap
&
params_map
,
Layer
(
const
std
::
shared_ptr
<
VariableMap
>
&
params_map
,
const
VariableMap
&
attrs_map_
,
const
std
::
shared_ptr
<
VariableMap
>
&
attrs_map_
,
const
FunctionInfoMap
&
info_map
,
const
FunctionInfoMap
&
info_map
,
const
phi
::
Place
&
place
);
const
phi
::
Place
&
place
);
...
@@ -70,8 +70,8 @@ class Layer {
...
@@ -70,8 +70,8 @@ class Layer {
std
::
shared_ptr
<
Layer
>
Clone
(
void
*
stream
=
nullptr
);
std
::
shared_ptr
<
Layer
>
Clone
(
void
*
stream
=
nullptr
);
private:
private:
VariableMap
params_map_
;
std
::
shared_ptr
<
VariableMap
>
params_map_
;
VariableMap
attrs_map_
;
std
::
shared_ptr
<
VariableMap
>
attrs_map_
;
FunctionInfoMap
info_map_
;
FunctionInfoMap
info_map_
;
phi
::
Place
place_
;
phi
::
Place
place_
;
std
::
shared_ptr
<
CompilationUnit
>
unit_
;
std
::
shared_ptr
<
CompilationUnit
>
unit_
;
...
...
paddle/fluid/jit/serializer.cc
浏览文件 @
ec6e0a2c
...
@@ -58,12 +58,12 @@ Layer Deserializer::operator()(const std::string& path,
...
@@ -58,12 +58,12 @@ Layer Deserializer::operator()(const std::string& path,
info_map
[
func_name
]
->
SetProgramFilePath
(
it
.
second
);
info_map
[
func_name
]
->
SetProgramFilePath
(
it
.
second
);
}
}
VariableMap
params_dict
;
auto
params_dict
=
std
::
make_shared
<
VariableMap
>
()
;
VariableMap
attrs_dict
;
auto
attrs_dict
=
std
::
make_shared
<
VariableMap
>
()
;
ReadTensorData
(
path
+
PDPARAMS_SUFFIX
,
param_names_set
,
place
,
&
params_dict
);
ReadTensorData
(
path
+
PDPARAMS_SUFFIX
,
param_names_set
,
place
,
params_dict
);
if
(
utils
::
FileExists
(
path
+
PROPERTY_SUFFIX
))
{
if
(
utils
::
FileExists
(
path
+
PROPERTY_SUFFIX
))
{
ReadAttributeData
(
path
+
PROPERTY_SUFFIX
,
&
attrs_dict
);
ReadAttributeData
(
path
+
PROPERTY_SUFFIX
,
attrs_dict
);
VLOG
(
3
)
<<
"Read Property Success!"
;
VLOG
(
3
)
<<
"Read Property Success!"
;
}
}
...
@@ -90,10 +90,11 @@ Layer Deserializer::operator()(const std::string& path,
...
@@ -90,10 +90,11 @@ Layer Deserializer::operator()(const std::string& path,
return
layer
;
return
layer
;
}
}
void
Deserializer
::
ReadTensorData
(
const
std
::
string
&
file_name
,
void
Deserializer
::
ReadTensorData
(
const
std
::
set
<
std
::
string
>&
var_name
,
const
std
::
string
&
file_name
,
const
phi
::
Place
&
place
,
const
std
::
set
<
std
::
string
>&
var_name
,
VariableMap
*
params_dict
)
const
{
const
phi
::
Place
&
place
,
std
::
shared_ptr
<
VariableMap
>
params_dict
)
const
{
VLOG
(
3
)
<<
"ReadTensorData from: "
<<
file_name
;
VLOG
(
3
)
<<
"ReadTensorData from: "
<<
file_name
;
std
::
ifstream
fin
(
file_name
,
std
::
ios
::
binary
);
std
::
ifstream
fin
(
file_name
,
std
::
ios
::
binary
);
platform
::
DeviceContextPool
&
pool
=
platform
::
DeviceContextPool
::
Instance
();
platform
::
DeviceContextPool
&
pool
=
platform
::
DeviceContextPool
::
Instance
();
...
@@ -108,12 +109,15 @@ void Deserializer::ReadTensorData(const std::string& file_name,
...
@@ -108,12 +109,15 @@ void Deserializer::ReadTensorData(const std::string& file_name,
}
}
}
}
void
Deserializer
::
ReadAttributeData
(
const
std
::
string
&
file_path
,
void
Deserializer
::
ReadAttributeData
(
VariableMap
*
attrs_dict
)
const
{
const
std
::
string
&
file_path
,
std
::
shared_ptr
<
VariableMap
>
attrs_dict
)
const
{
VLOG
(
3
)
<<
"ReadPropertyData from: "
<<
file_path
;
VLOG
(
3
)
<<
"ReadPropertyData from: "
<<
file_path
;
Property
p
;
Property
p
;
p
.
Deserialization
(
file_path
);
p
.
Deserialization
(
file_path
);
*
attrs_dict
=
static_cast
<
VariableMap
>
(
p
.
Values
());
for
(
auto
&
it
:
p
.
Values
())
{
attrs_dict
->
emplace
(
it
.
first
,
it
.
second
);
}
return
;
return
;
}
}
...
...
paddle/fluid/jit/serializer.h
浏览文件 @
ec6e0a2c
...
@@ -55,11 +55,11 @@ class Deserializer {
...
@@ -55,11 +55,11 @@ class Deserializer {
void
ReadTensorData
(
const
std
::
string
&
file_name
,
void
ReadTensorData
(
const
std
::
string
&
file_name
,
const
std
::
set
<
std
::
string
>&
var_name
,
const
std
::
set
<
std
::
string
>&
var_name
,
const
phi
::
Place
&
place
,
const
phi
::
Place
&
place
,
VariableMap
*
params_dict
)
const
;
std
::
shared_ptr
<
VariableMap
>
params_dict
)
const
;
// property pb
// property pb
void
ReadAttributeData
(
const
std
::
string
&
file_path
,
void
ReadAttributeData
(
const
std
::
string
&
file_path
,
VariableMap
*
attrs_dict
)
const
;
std
::
shared_ptr
<
VariableMap
>
attrs_dict
)
const
;
// void ReadExtraInfo(const std::string& file_name) const;
// void ReadExtraInfo(const std::string& file_name) const;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录