352 lines
12 KiB
C++
352 lines
12 KiB
C++
// Copyright (c) 2019 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/framework/executor_gc_helper.h"
|
|
|
|
#include <string>
|
|
|
|
#include "glog/logging.h"
|
|
#include "paddle/fluid/framework/block_desc.h"
|
|
#include "paddle/fluid/framework/no_need_buffer_vars_inference.h"
|
|
#include "paddle/fluid/framework/op_info.h"
|
|
#include "paddle/fluid/framework/op_registry.h"
|
|
#include "paddle/fluid/framework/operator.h"
|
|
#include "paddle/fluid/framework/var_desc.h"
|
|
#include "paddle/fluid/operators/controlflow/conditional_block_op_helper.h"
|
|
#include "paddle/fluid/operators/controlflow/pylayer_op_helper.h"
|
|
#include "paddle/fluid/operators/controlflow/while_op_helper.h"
|
|
#include "paddle/fluid/platform/enforce.h"
|
|
|
|
namespace paddle::framework {
|
|
|
|
void OpInOutInfo::Build(const OperatorBase *op) {
|
|
is_built_ = true;
|
|
auto &inferer = op->Info().NoNeedBufferVarsInferer();
|
|
if (inferer) {
|
|
no_need_buffer_ins_ = inferer(op->Inputs(), op->Outputs(), op->Attrs());
|
|
|
|
if (no_need_buffer_ins_.empty()) return;
|
|
|
|
for (auto &in_name_pair : op->Inputs()) {
|
|
if (no_need_buffer_ins_.count(in_name_pair.first) != 0) {
|
|
continue;
|
|
}
|
|
|
|
for (auto &in_arg_name : in_name_pair.second) {
|
|
other_args_set_.insert(in_arg_name);
|
|
}
|
|
}
|
|
|
|
for (auto &out_name_pair : op->Outputs()) {
|
|
for (auto &out_arg_name : out_name_pair.second) {
|
|
other_args_set_.insert(out_arg_name);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool OpInOutInfo::IsInArgBufferNeeded(const std::string &in_arg_name) const {
|
|
return no_need_buffer_ins_.empty() || other_args_set_.count(in_arg_name) != 0;
|
|
}
|
|
|
|
static bool VarCanBeDeleted(const std::string &name,
|
|
const BlockDesc &block,
|
|
const std::unordered_set<std::string> &skip_vars,
|
|
const std::multiset<std::string> *unpersist_vars) {
|
|
if (skip_vars.count(name) != 0) {
|
|
return false;
|
|
}
|
|
|
|
auto *var_desc = block.FindVar(name);
|
|
if (var_desc == nullptr || var_desc->Persistable()) {
|
|
if (unpersist_vars != nullptr) {
|
|
// unpersist vars
|
|
if (unpersist_vars->find(name) == unpersist_vars->end()) {
|
|
return false;
|
|
}
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
auto type = var_desc->Proto()->type().type();
|
|
|
|
return type == proto::VarType::DENSE_TENSOR ||
|
|
type == proto::VarType::SELECTED_ROWS ||
|
|
type == proto::VarType::DENSE_TENSOR_ARRAY;
|
|
}
|
|
|
|
std::unordered_map<const OperatorBase *, std::vector<std::string>>
|
|
GetUnusedVars(const BlockDesc &block,
|
|
const std::vector<std::unique_ptr<OperatorBase>> &ops,
|
|
const std::vector<std::string> &skip_var_list,
|
|
const std::multiset<std::string> *unpersist_vars,
|
|
bool is_shard_for_thread_mode) {
|
|
std::unordered_set<std::string> skip_vars(skip_var_list.begin(),
|
|
skip_var_list.end());
|
|
|
|
std::unordered_map<std::string, size_t> var_op_idx_map;
|
|
std::unordered_map<std::string, std::string> old_to_new;
|
|
std::unordered_map<std::string, std::string> new_to_old;
|
|
for (size_t i = 0; i < ops.size(); ++i) {
|
|
auto *op = ops[i].get();
|
|
|
|
OpInOutInfo info;
|
|
for (auto &name_pair : op->Inputs()) {
|
|
for (auto &name : name_pair.second) {
|
|
if (!VarCanBeDeleted(name, block, skip_vars, unpersist_vars)) {
|
|
continue;
|
|
}
|
|
bool is_unpersist_var = false;
|
|
if (is_shard_for_thread_mode) {
|
|
if (unpersist_vars->find(name) != unpersist_vars->end()) {
|
|
is_unpersist_var = true;
|
|
if (op->Type() == std::string("c_broadcast")) {
|
|
auto it = old_to_new.find(name);
|
|
if (it == old_to_new.end()) {
|
|
old_to_new[name] = name;
|
|
new_to_old[name] = name;
|
|
} else {
|
|
std::string new_name = it->second + std::string("_");
|
|
old_to_new[name] = new_name;
|
|
new_to_old[new_name] = name;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// var can be gc-ed
|
|
if (!info.IsBuilt()) {
|
|
info.Build(op);
|
|
}
|
|
|
|
if (info.IsInArgBufferNeeded(name)) {
|
|
// Update the last living op of variable to current op
|
|
if (is_unpersist_var && old_to_new.count(name) > 0) {
|
|
var_op_idx_map[old_to_new[name]] = i;
|
|
} else {
|
|
var_op_idx_map[name] = i;
|
|
}
|
|
} else {
|
|
VLOG(10) << "Skip reference count computing of variable "
|
|
<< name_pair.first << "(" << name << ") in Operator "
|
|
<< op->Type();
|
|
}
|
|
}
|
|
}
|
|
|
|
for (auto &name_pair : op->Outputs()) {
|
|
for (auto &name : name_pair.second) {
|
|
if (VarCanBeDeleted(name, block, skip_vars, unpersist_vars)) {
|
|
// Update the last living op of variable to current op
|
|
if (is_shard_for_thread_mode && old_to_new.count(name) > 0) {
|
|
var_op_idx_map[old_to_new[name]] = i;
|
|
} else {
|
|
var_op_idx_map[name] = i;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
std::unordered_map<const OperatorBase *, std::vector<std::string>> result;
|
|
for (auto &name_op_idx_pair : var_op_idx_map) {
|
|
auto &name = name_op_idx_pair.first;
|
|
size_t op_idx = name_op_idx_pair.second;
|
|
if (is_shard_for_thread_mode && new_to_old.count(name) > 0) {
|
|
result[ops[op_idx].get()].emplace_back(new_to_old[name]);
|
|
} else {
|
|
result[ops[op_idx].get()].emplace_back(name);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void DeleteUnusedTensors(const Scope &scope,
|
|
const std::vector<std::string> &delete_vars,
|
|
GarbageCollector *gc) {
|
|
std::deque<std::shared_ptr<memory::Allocation>> garbages;
|
|
|
|
for (auto &var_name : delete_vars) {
|
|
auto *var = scope.FindVar(var_name);
|
|
if (var == nullptr) {
|
|
continue;
|
|
}
|
|
|
|
VLOG(2) << "Erase variable " << var_name;
|
|
if (var->IsType<DenseTensor>()) {
|
|
garbages.emplace_back(var->GetMutable<DenseTensor>()->MoveMemoryHolder());
|
|
} else if (var->IsType<phi::SelectedRows>()) {
|
|
garbages.emplace_back(var->GetMutable<phi::SelectedRows>()
|
|
->mutable_value()
|
|
->MoveMemoryHolder());
|
|
} else if (var->IsType<phi::TensorArray>()) {
|
|
auto *dense_tensor_arr = var->GetMutable<phi::TensorArray>();
|
|
for (auto &t : *dense_tensor_arr) {
|
|
garbages.emplace_back(t.MoveMemoryHolder());
|
|
}
|
|
// NOTE(wangxi): need clear the vector, otherwise dense_tensor_arr.size()
|
|
// is wrong, if size() decrease in next step, an error maybe occur.
|
|
dense_tensor_arr->clear();
|
|
} else if (var->IsType<Strings>()) {
|
|
} else {
|
|
PADDLE_THROW(common::errors::Unimplemented(
|
|
"Type %s of variable %s is not supported eager deletion.",
|
|
framework::ToTypeName(var->Type()),
|
|
var_name));
|
|
}
|
|
}
|
|
|
|
if (!garbages.empty()) {
|
|
gc->Add(std::move(garbages));
|
|
}
|
|
}
|
|
|
|
void DeleteUnusedTensors(
|
|
const Scope &scope,
|
|
const OperatorBase *op,
|
|
const std::unordered_map<const OperatorBase *, std::vector<std::string>>
|
|
&delete_vars_map,
|
|
GarbageCollector *gc) {
|
|
auto iter = delete_vars_map.find(op);
|
|
if (iter == delete_vars_map.end()) {
|
|
return;
|
|
}
|
|
|
|
auto &delete_vars = iter->second;
|
|
DeleteUnusedTensors(scope, delete_vars, gc);
|
|
}
|
|
|
|
static std::vector<std::unique_ptr<OperatorBase>> CreateOpsFromBlock(
|
|
const BlockDesc &block) {
|
|
std::vector<std::unique_ptr<OperatorBase>> ops;
|
|
size_t op_num = block.OpSize();
|
|
ops.reserve(op_num);
|
|
for (size_t i = 0; i < op_num; ++i) {
|
|
auto *op_desc = block.Op(static_cast<int>(i));
|
|
ops.push_back(OpRegistry::CreateOp(*op_desc));
|
|
}
|
|
return ops;
|
|
}
|
|
|
|
std::vector<std::vector<std::vector<std::string>>> GetEagerDeletionCleanVars(
|
|
const ProgramDesc &program, const std::vector<std::string> &skip_vars) {
|
|
return GetEagerDeletionCleanVarsForPartial(program, skip_vars, false);
|
|
}
|
|
|
|
std::vector<std::vector<std::vector<std::string>>>
|
|
GetEagerDeletionCleanVarsForPartial(const ProgramDesc &origin_program,
|
|
const std::vector<std::string> &skip_vars,
|
|
const bool &for_partial_block) {
|
|
ProgramDesc program{origin_program};
|
|
size_t block_num = program.Size();
|
|
PADDLE_ENFORCE_GE(block_num,
|
|
1,
|
|
common::errors::PermissionDenied(
|
|
"Program should have at least one block"));
|
|
// Note(zhangbo): For dygraph2static inplace policy, origin_program is a
|
|
// partial program(only include forward or backward), and control flow op's
|
|
// attr skip_eager_deletion_vars has been updated at graph->program before
|
|
// calling this function.
|
|
if (!for_partial_block) {
|
|
// prepare safe GCs on sub block ops
|
|
auto global_block_ops = CreateOpsFromBlock(program.Block(0));
|
|
operators::PrepareSafeEagerDeletionOnConditionalOpAndConditionalGradOp(
|
|
program, 0, global_block_ops);
|
|
operators::PrepareSafeEagerDeletionOnPyLayerOpAndPyLayerGradOp(
|
|
program, 0, global_block_ops);
|
|
operators::PrepareSafeEagerDeletionOnWhileOpAndWhileGradOp(
|
|
program, 0, global_block_ops);
|
|
}
|
|
|
|
// find the skip vars on each block
|
|
std::vector<std::vector<std::string>> skip_vars_on_each_block(block_num);
|
|
skip_vars_on_each_block[0] = skip_vars;
|
|
std::vector<bool> found_skip_vars(block_num, false);
|
|
found_skip_vars[0] = true;
|
|
|
|
const char *kSubBlock = "sub_block";
|
|
const char *kSkipEagerDeletionVars = "skip_eager_deletion_vars";
|
|
// NOTE: pylayer op contains may contain two blocks: forward block and
|
|
// backward block
|
|
const char *kBlocks = "blocks";
|
|
|
|
for (size_t i = 0; i < block_num; ++i) {
|
|
const auto &block = program.Block(i);
|
|
size_t op_num = block.OpSize();
|
|
for (size_t j = 0; j < op_num; ++j) {
|
|
auto *op = block.Op(static_cast<int>(j));
|
|
if ((!op->HasAttr(kSubBlock) && !op->HasAttr(kBlocks)) ||
|
|
!op->HasAttr(kSkipEagerDeletionVars)) {
|
|
continue;
|
|
}
|
|
|
|
std::vector<int32_t> sub_block_ids;
|
|
if (op->HasAttr(kSubBlock)) {
|
|
sub_block_ids.push_back(
|
|
op->GetAttrIfExists<BlockDesc *>(kSubBlock)->ID());
|
|
} else if (op->HasAttr(kBlocks)) {
|
|
const auto &blocks =
|
|
op->GetAttrIfExists<std::vector<BlockDesc *>>(kBlocks);
|
|
for (const auto &block : blocks) {
|
|
sub_block_ids.push_back(block->ID());
|
|
}
|
|
}
|
|
|
|
for (auto sub_block_id : sub_block_ids) {
|
|
PADDLE_ENFORCE_GE(sub_block_id,
|
|
0,
|
|
common::errors::PermissionDenied(
|
|
"sub_block id must be non-negative number"));
|
|
PADDLE_ENFORCE_LT(sub_block_id,
|
|
block_num,
|
|
common::errors::PermissionDenied(
|
|
"sub_block id exceeds max block num"));
|
|
PADDLE_ENFORCE_EQ(
|
|
found_skip_vars[sub_block_id],
|
|
false,
|
|
common::errors::PermissionDenied(
|
|
"there are 2 ops which refer to the same sub_block %d",
|
|
sub_block_id));
|
|
|
|
found_skip_vars[sub_block_id] = true;
|
|
auto sub_block_skip_vars =
|
|
op->GetAttrIfExists<std::vector<std::string>>(
|
|
kSkipEagerDeletionVars);
|
|
skip_vars_on_each_block[sub_block_id] = std::move(sub_block_skip_vars);
|
|
}
|
|
}
|
|
}
|
|
|
|
std::vector<std::vector<std::vector<std::string>>> result;
|
|
result.reserve(block_num);
|
|
for (size_t i = 0; i < block_num; ++i) {
|
|
const auto &block = program.Block(i);
|
|
const auto block_ops = CreateOpsFromBlock(block);
|
|
const auto &block_skip_vars = skip_vars_on_each_block[i];
|
|
auto delete_var_map = GetUnusedVars(block, block_ops, block_skip_vars);
|
|
std::vector<std::vector<std::string>> block_result;
|
|
block_result.reserve(block_ops.size());
|
|
for (const auto &op : block_ops) {
|
|
auto &delete_vars = delete_var_map[op.get()];
|
|
std::sort(delete_vars.begin(), delete_vars.end()); // for stable result
|
|
block_result.emplace_back(delete_vars);
|
|
}
|
|
result.emplace_back(std::move(block_result));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
} // namespace paddle::framework
|