Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
76750eda
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
76750eda
编写于
7月 05, 2019
作者:
J
Jiaying Zhao
提交者:
Yanzhan Yang
7月 05, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
free memery when input changes smaller in lod mode (#1728)
上级
0457869a
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
29 addition
and
1 deletion
+29
-1
src/framework/executor.cpp
src/framework/executor.cpp
+25
-0
src/framework/executor.h
src/framework/executor.h
+2
-1
src/framework/tensor_base.h
src/framework/tensor_base.h
+2
-0
未找到文件。
src/framework/executor.cpp
浏览文件 @
76750eda
...
...
@@ -294,6 +294,20 @@ static void ClearNoPersistableTensorArray(const framework::ProgramDesc *program,
}
}
static
void
ClearNoPersistableTensor
(
const
framework
::
ProgramDesc
*
program
,
framework
::
Scope
*
scope
)
{
for
(
const
auto
&
block
:
program
->
Blocks
())
{
for
(
const
auto
&
var_desc
:
block
->
Vars
())
{
if
(
!
var_desc
->
Persistable
()
&&
var_desc
->
Type
()
==
VARTYPE_TYPE_LOD_TENSOR
)
{
auto
var
=
scope
->
Var
(
var_desc
->
Name
());
auto
target_tensor
=
var
->
template
GetMutable
<
framework
::
LoDTensor
>();
target_tensor
->
reset
();
}
}
}
}
template
<
typename
Device
,
typename
T
>
void
Executor
<
Device
,
T
>::
InitNoPersistableMemory
(
const
Tensor
&
input_tensor
)
{
for
(
const
auto
&
block
:
program_desc_
->
Blocks
())
{
...
...
@@ -409,6 +423,7 @@ void Executor<Device, T>::SetInput(const Tensor &input,
target
.
Resize
(
input
.
dims
());
target
.
ShareDataWith
(
input
);
input_dim_cur_
=
input
.
dims
();
}
template
<
typename
Device
,
typename
T
>
...
...
@@ -458,6 +473,16 @@ PMStatus Executor<Device, T>::Predict() {
// is always push back a new tensor in the array
ClearNoPersistableTensorArray
(
program_desc_
.
get
(),
program_
.
scope
.
get
());
// in lod_mode_, free no persistable memery when input changes smaller.
if
(
lod_mode_
)
{
if
(
product
(
input_dim_cur_
)
<=
0.7
*
product
(
input_dim_last_
))
{
ClearNoPersistableTensor
(
program_desc_
.
get
(),
program_
.
scope
.
get
());
input_dim_last_
=
input_dim_cur_
;
}
else
if
(
product
(
input_dim_cur_
)
>
product
(
input_dim_last_
))
{
input_dim_last_
=
input_dim_cur_
;
}
}
#ifdef PADDLE_MOBILE_PROFILE
std
::
vector
<
ProfInfo
>
profile
(
ops_of_block0_
.
size
());
struct
timespec
ts
;
...
...
src/framework/executor.h
浏览文件 @
76750eda
...
...
@@ -97,8 +97,9 @@ class Executor {
std
::
unordered_map
<
std
::
string
,
int
>
feed_indices_
;
std
::
unordered_map
<
std
::
string
,
int
>
fetch_indices_
;
// for
super resoltion
// for
lod_mode_
DDim
input_dim_last_
;
DDim
input_dim_cur_
;
#ifdef PADDLE_MOBILE_PROFILE
typedef
typename
DtypeTensorTrait
<
Device
>::
gtype
ProfileTensorType
;
...
...
src/framework/tensor_base.h
浏览文件 @
76750eda
...
...
@@ -70,6 +70,8 @@ class TensorBase {
inline
bool
IsInitialized
()
const
{
return
holder_
!=
nullptr
;
}
inline
bool
reset
()
const
{
holder_
==
nullptr
;
}
/*! Return the dimensions of the memory block. */
inline
const
DDim
&
dims
()
const
{
return
dims_
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录