Files
2026-07-13 12:40:42 +08:00

643 lines
22 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/imperative/layer.h"
#include "paddle/common/flags.h"
#include "paddle/fluid/eager/eager_tensor.h"
#include "paddle/fluid/framework/convert_utils.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/imperative/infer_var_type_context.h"
#include "paddle/fluid/imperative/op_base.h"
#include "paddle/fluid/imperative/prepared_operator.h"
#include "paddle/fluid/imperative/var_helper.h"
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/onednn_helper.h"
#include "paddle/phi/core/platform/device_context.h"
#include "paddle/phi/core/platform/profiler.h"
#include "paddle/phi/kernels/funcs/math_function.h"
COMMON_DECLARE_bool(use_mkldnn);
COMMON_DECLARE_bool(use_onednn);
namespace paddle::imperative {
using framework::Variable;
void ThreadSafeNameSet::Insert(const std::string& name) {
std::lock_guard<std::mutex> guard(mtx_);
set_.insert(name);
}
void ThreadSafeNameSet::Remove(const std::string& name) {
std::lock_guard<std::mutex> guard(mtx_);
auto iter = set_.find(name);
PADDLE_ENFORCE_EQ(
iter != set_.end(),
true,
common::errors::NotFound("Variable name %s does not exist", name));
set_.erase(iter);
}
std::vector<std::string> ThreadSafeNameSet::Names() const {
std::lock_guard<std::mutex> guard(mtx_);
return std::vector<std::string>(set_.begin(), set_.end());
}
ThreadSafeNameSet VarBase::name_set_;
std::vector<std::string> VarBase::AliveVarNames() { return name_set_.Names(); }
static framework::RuntimeContext PrepareRuntimeContext(
const NameVarBaseMap& ins, const NameVarBaseMap& outs) {
framework::VariableValueMap inputs, outputs;
for (auto& in_pair : ins) {
auto& in_ctx = inputs[in_pair.first];
in_ctx.reserve(in_pair.second.size());
for (auto& in_var : in_pair.second) {
in_ctx.emplace_back(in_var->MutableVar());
}
}
for (auto& out_pair : outs) {
auto& out_ctx = outputs[out_pair.first];
out_ctx.reserve(out_pair.second.size());
for (auto& out_var : out_pair.second) {
out_ctx.emplace_back(out_var->MutableVar());
}
}
return framework::RuntimeContext(inputs, outputs);
}
template <typename VarType>
static std::string DebugString(
const std::string& name,
const std::vector<std::shared_ptr<VarType>>& vars) {
std::stringstream ss;
ss << name << "{";
for (size_t i = 0; i < vars.size(); ++i) {
if (i > 0) ss << ", ";
if (vars[i] == nullptr) {
ss << "NULL";
continue;
}
ss << GetNameFromVar(vars[i]) << "[";
const framework::Variable& var = vars[i]->Var();
if (!var.IsInitialized()) {
ss << "NOT_INITED_VAR";
} else if (var.IsType<DenseTensor>()) {
auto& tensor = var.Get<DenseTensor>();
ss << "DenseTensor<";
if (tensor.IsInitialized()) {
ss << framework::DataTypeToString(
framework::TransToProtoVarType(tensor.dtype()))
<< ", ";
ss << tensor.place() << ", ";
ss << "(" << tensor.dims() << ")";
} else {
ss << "NOT_INITED";
}
ss << ">";
} else if (var.IsType<phi::SelectedRows>()) {
ss << "SelectedRows<";
auto& selected_rows = var.Get<phi::SelectedRows>();
auto& tensor = selected_rows.value();
auto& rows = selected_rows.rows();
if (tensor.IsInitialized()) {
ss << framework::DataTypeToString(
framework::TransToProtoVarType(tensor.dtype()))
<< ", ";
ss << tensor.place() << ", ";
ss << "height(" << selected_rows.height() << "), rows(";
std::for_each(rows.cbegin(), rows.cend(), [&ss](const int64_t r) {
ss << r << " ";
});
ss << "), dims(" << tensor.dims() << ")";
} else {
ss << "NOT_INITED";
}
ss << ">";
} else {
ss << "UNRESOLVED_TYPE";
}
ss << "]";
}
ss << "}";
return ss.str();
}
template <typename VarType>
static std::string LayerDebugStringImpl(const std::string& op_type,
const NameVarMap<VarType>& ins,
const NameVarMap<VarType>& outs) {
std::stringstream ss;
ss << "Op(" << op_type << "): ";
ss << "Inputs: ";
size_t i = 0;
for (auto& pair : ins) {
if (i > 0) ss << ", ";
ss << DebugString<VarType>(pair.first, pair.second);
++i;
}
ss << ", Outputs: ";
i = 0;
for (auto& pair : outs) {
if (i > 0) ss << ", ";
ss << DebugString<VarType>(pair.first, pair.second);
++i;
}
return ss.str();
}
std::string LayerDebugString(const std::string& op_type,
const NameVarMap<VarBase>& ins,
const NameVarMap<VarBase>& outs) {
return LayerDebugStringImpl<VarBase>(op_type, ins, outs);
}
std::string LayerDebugString(const std::string& op_type,
const NameVarMap<VariableWrapper>& ins,
const NameVarMap<VariableWrapper>& outs) {
return LayerDebugStringImpl<VariableWrapper>(op_type, ins, outs);
}
std::string LayerDebugString(const std::string& op_type,
const NameVarMap<egr::EagerVariable>& ins,
const NameVarMap<egr::EagerVariable>& outs) {
return LayerDebugStringImpl<egr::EagerVariable>(op_type, ins, outs);
}
template <typename VarType>
static void SetForwardDataTypeOfGradVars(const NameVarMap<VarType>& outs) {
for (auto& var_pair : outs) {
for (auto& var : var_pair.second) {
// NOTE(zhiqu): The output may be NULL because of pruning.
if (var) {
SetForwardDataTypeOfGradVar(var);
}
}
}
}
template <>
void SetForwardDataTypeOfGradVars<egr::EagerVariable>(
const NameVarMap<egr::EagerVariable>& outs) {
// In eager mode we don't need this.
}
void TestSetForwardDataTypeOfGradVarsEager(
const NameVarMap<egr::EagerVariable>& outs) {
SetForwardDataTypeOfGradVars<egr::EagerVariable>(outs);
}
VarBase::VarBase(const std::shared_ptr<VariableWrapper>& var)
: var_(var), grad_node_(var->GetGradNode()) {
if (auto grad_var = var_->GetGradVar()) {
grad_var_ = std::make_shared<VarBase>(grad_var);
}
if (IsDebugEnabled()) {
VLOG(10) << "Construct VarBase: " << Name();
name_set_.Insert(Name());
}
}
size_t VarBase::GradOpNum() const {
return grad_node_ ? grad_node_->size() : 0;
}
void VarBase::ClearGradient(bool set_to_zero) {
VLOG(4) << "ClearGradient " << Name();
if (grad_var_) {
if (grad_var_->Var().IsType<phi::SelectedRows>()) {
auto* grad_t = grad_var_->MutableVar()->GetMutable<phi::SelectedRows>();
if (grad_t->mutable_value()->IsInitialized()) {
#ifdef PADDLE_WITH_DNNL
if (FLAGS_use_mkldnn || FLAGS_use_onednn)
platform::ClearONEDNNCache(grad_t->place());
#endif
grad_t->mutable_rows()->clear();
grad_t->mutable_value()->clear();
}
} else {
phi::RecordEvent record_event(
"ClearGradient", phi::TracerEventType::UserDefined, 2);
auto* grad_t = grad_var_->MutableVar()->GetMutable<DenseTensor>();
if (grad_t->IsInitialized()) {
if (set_to_zero) {
auto* dev_ctx =
phi::DeviceContextPool::Instance().Get(grad_t->place());
phi::funcs::set_constant(*dev_ctx, grad_t, 0.0f);
} else {
grad_t->clear();
}
#ifdef PADDLE_WITH_DNNL
if (FLAGS_use_mkldnn || FLAGS_use_onednn)
platform::ClearONEDNNCache(grad_t->place());
#endif
}
}
// TODO(zhouwei): It's better to free memory of grad by grad_t->clear.
// But will have some bug on mac CPU of yolov3 model, why?
// After fix this bug, function SetIsEmpty() isn't need
grad_var_->SharedVar()->SetIsEmpty(true);
}
}
void VarBase::_GradientSetEmpty(bool is_empty) {
VLOG(4) << "Set gradient " << Name() << " is_empty:" << is_empty;
if (grad_var_) {
auto share_var = grad_var_->SharedVar();
if (share_var) {
share_var->SetIsEmpty(is_empty);
}
}
}
bool VarBase::_IsGradientSetEmpty() {
bool res = true;
if (grad_var_) {
auto share_var = grad_var_->SharedVar();
if (share_var) {
res = share_var->is_empty_;
VLOG(4) << "Check gradient " << Name() << " is empty:" << res;
}
}
return res;
}
std::shared_ptr<VarBase> VarBase::NewVarBase(const phi::Place& dst_place,
const bool blocking) const {
PADDLE_ENFORCE_EQ(
Var().IsInitialized() &&
(Var().IsType<DenseTensor>() || Var().IsType<phi::SelectedRows>()),
true,
common::errors::InvalidArgument(
"Variable is not initialized or Variable's type is not "
"DenseTensor or SelectedRows when getting numpy tensor"));
if (Var().IsType<DenseTensor>()) {
auto& src_tensor = Var().Get<DenseTensor>();
// TODO(Jiabin): change this after move unique_name generator to CXX
auto new_var = std::make_shared<VarBase>(
true, Name() + std::to_string(copied_counter_++));
auto* dst_tensor = new_var->MutableVar()->GetMutable<DenseTensor>();
dst_tensor->set_lod(src_tensor.lod());
new_var->SetPersistable(Persistable());
new_var->SetDataType(DataType());
new_var->SetType(Type());
framework::TensorCopy(src_tensor, dst_place, dst_tensor);
if (blocking) {
phi::DeviceContextPool::Instance().Get(dst_place)->Wait();
auto src_place = src_tensor.place();
if (!(src_place == dst_place)) {
phi::DeviceContextPool::Instance().Get(src_place)->Wait();
}
}
VLOG(4) << "copy tensor " << Name() << " from " << Place() << " to "
<< dst_place;
return new_var;
} else {
auto& src_selected_rows = Var().Get<phi::SelectedRows>();
auto new_var = std::make_shared<VarBase>(
false, "Itmp" + std::to_string(copied_counter_++));
new_var->SetType(framework::proto::VarType::SELECTED_ROWS);
auto* dst_selected_rows =
new_var->MutableVar()->GetMutable<phi::SelectedRows>();
framework::TensorCopy(src_selected_rows.value(),
dst_place,
dst_selected_rows->mutable_value());
if (blocking) {
phi::DeviceContextPool::Instance().Get(dst_place)->Wait();
auto src_place = src_selected_rows.place();
if (!(src_place == dst_place)) {
phi::DeviceContextPool::Instance().Get(src_place)->Wait();
}
}
dst_selected_rows->set_height(src_selected_rows.height());
dst_selected_rows->set_rows(src_selected_rows.rows());
VLOG(4) << "copy tensor " << Name() << " from " << Place() << " to "
<< dst_place;
return new_var;
}
}
void VarBase::CopyFrom(const VarBase& src, const bool blocking) {
if (src.SharedVar()->IsEmpty()) {
return;
}
VLOG(3) << "Deep copy Tensor from " << src.Name() << " to " << Name();
if (Var().IsInitialized()) {
PADDLE_ENFORCE_EQ(DataType(),
src.DataType(),
common::errors::PreconditionNotMet(
"Tensor %s has different data type with Tensor %s, "
"Tensor Copy cannot be performed!",
Name(),
src.Name()));
PADDLE_ENFORCE_EQ(Type(),
src.Type(),
common::errors::PreconditionNotMet(
"Tensor %s has different type with Tensor %s, Tensor "
"Copy cannot be performed!",
Name(),
src.Name()));
} else {
SetDataType(src.DataType());
SetType(src.Type());
SetPersistable(src.Persistable());
InnerSetOverriddenStopGradient(src.OverriddenStopGradient());
}
phi::Place place = src.Place();
if (src.Var().IsType<DenseTensor>()) {
auto& src_tensor = src.Var().Get<DenseTensor>();
auto* dst_tensor = MutableVar()->GetMutable<DenseTensor>();
if (dst_tensor && dst_tensor->IsInitialized()) {
PADDLE_ENFORCE_EQ(dst_tensor->dims(),
src_tensor.dims(),
common::errors::PreconditionNotMet(
"Tensor %s has different dims with Tensor %s, "
"Tensor Copy cannot be performed!",
Name(),
src.Name()));
PADDLE_ENFORCE_EQ(dst_tensor->lod(),
src_tensor.lod(),
common::errors::PreconditionNotMet(
"Tensor %s has different dims with Tensor %s, "
"Tensor Copy cannot be performed!",
Name(),
src.Name()));
place = Place();
} else {
dst_tensor->set_lod(src_tensor.lod()); // NOLINT
dst_tensor->Resize(src_tensor.dims());
}
framework::TensorCopy(src_tensor, place, dst_tensor);
} else if (src.Var().IsType<phi::SelectedRows>()) {
auto& src_selected_rows = src.Var().Get<phi::SelectedRows>();
auto* dst_selected_rows = MutableVar()->GetMutable<phi::SelectedRows>();
dst_selected_rows->set_height(src_selected_rows.height());
dst_selected_rows->set_rows(src_selected_rows.rows());
auto& src_tensor = src_selected_rows.value();
auto* dst_tensor = dst_selected_rows->mutable_value();
if (dst_tensor && dst_tensor->IsInitialized()) {
PADDLE_ENFORCE_EQ(dst_tensor->dims(),
src_tensor.dims(),
common::errors::PreconditionNotMet(
"Tensor %s has different dims with Tensor %s, "
"Tensor Copy cannot be performed!",
Name(),
src.Name()));
place = Place();
} else {
dst_tensor->Resize(src_tensor.dims());
}
framework::TensorCopy(src_tensor, place, dst_tensor);
}
if (blocking) {
phi::DeviceContextPool::Instance().Get(place)->Wait();
}
}
void VarBase::BumpInplaceVersion() {
PADDLE_ENFORCE_EQ(
Var().IsInitialized(),
true,
common::errors::InvalidArgument(
"Tensor %s has not been initialized, please check if it has no data.",
Name()));
MutableVar()->BumpInplaceVersion();
}
// NOTE(weilong wu):
// This function try to copy the data from target varbase,
// and fill into the grad_var_ of the current varbase.
void VarBase::_CopyGradientFrom(const VarBase& src) {
if (Var().IsInitialized()) {
PADDLE_ENFORCE_EQ(DataType(),
src.DataType(),
common::errors::PreconditionNotMet(
"Tensor %s has different data type with Tensor %s",
Name(),
src.Name()));
PADDLE_ENFORCE_EQ(Type(),
src.Type(),
common::errors::PreconditionNotMet(
"Tensor %s has different type with Tensor %s, Tensor "
"ShareGradientDataWith cannot be performed!",
Name(),
src.Name()));
}
VLOG(4) << " VarBase copy gradient with " << src.Name();
if (grad_var_) {
auto& src_tensor = src.Var().Get<DenseTensor>();
PADDLE_ENFORCE_EQ(src_tensor.IsInitialized(),
true,
common::errors::InvalidArgument(
"Tensor %s has not been initialized", src.Name()));
auto* grad_t = grad_var_->MutableVar()->GetMutable<DenseTensor>();
auto* var_ = MutableVar()->GetMutable<DenseTensor>();
grad_t->ShareDataWith(src_tensor);
grad_t->Resize(var_->dims());
}
}
void OpBase::SetType(const std::string& type) {
op_ = framework::OpRegistry::CreateOp(type, {}, {}, {}, false);
}
void OpBase::ClearBackwardTrace() {
ins_.clear();
outs_.clear();
}
template <typename VarType>
static void OpBaseRunImpl(const framework::OperatorBase& op,
const NameVarMap<VarType>& ins,
const NameVarMap<VarType>& outs,
const framework::AttributeMap& attrs,
const framework::AttributeMap& default_attrs,
const phi::Place& place) {
auto* op_kernel = static_cast<const framework::OperatorWithKernel*>(&op);
PADDLE_ENFORCE_NOT_NULL(
op_kernel,
common::errors::PermissionDenied(
"Only support operator with kernel in Dygraph mode."));
auto& info = op.Info();
if (info.infer_var_type_) {
RuntimeInferVarTypeContext<VarType> infer_var_type_ctx(
ins, outs, attrs, default_attrs);
info.infer_var_type_(&infer_var_type_ctx);
}
// Initialize output var type
for (auto& var_pair : outs) {
for (auto& var : var_pair.second) {
if (var) {
InitializeVariable(var->MutableVar(), GetType(var));
}
}
}
VLOG(5) << LayerDebugString(op.Type(), ins, outs);
/**
* [ Why need temporary inputs here? ]
*
* PrepareData should not change original input tensor inplace.
* Suppose the user defines a tensor(int), enters an op to execute,
* and then this op rewrites GetExpectedKernelForVar, and converts
* this tensor to float type during execution. After the dynamic
* graph is executed, the user-defined variable will be lost, and
* the user cannot get the originally defined int tensor, because
* it has been converted to float, this should be regarded as a bug
* in certain usage scenarios
*
* In static graph mode, when op is executed, a temporary scope
* `transfer_scope` is created before PrepareData, the data after
* transform is stored in the temporary scope, and then discarded
* after the execution of op, but the original input is directly
* overwritten in the previous dynamic graph implementation.
*/
auto prepared_op =
PreparedOp::Prepare(ins, outs, *op_kernel, place, attrs, default_attrs);
auto tmp_ins_ptr = PrepareData<VarType>(
*op_kernel, ins, prepared_op.kernel_key(), prepared_op.place());
if (tmp_ins_ptr == nullptr) {
prepared_op.Run(ins, outs, attrs, default_attrs);
} else {
prepared_op.Run(*tmp_ins_ptr, outs, attrs, default_attrs);
}
VLOG(4) << LayerDebugString(op.Type(), ins, outs);
// set the output var
SetForwardDataTypeOfGradVars<VarType>(outs);
}
void OpBase::Run(const framework::OperatorBase& op,
const NameVarMap<VarBase>& ins,
const NameVarMap<VarBase>& outs,
const framework::AttributeMap& attrs,
const framework::AttributeMap& default_attrs,
const phi::Place& place) {
OpBaseRunImpl<VarBase>(op, ins, outs, attrs, default_attrs, place);
}
void OpBase::Run(const framework::OperatorBase& op,
const NameVarMap<VariableWrapper>& ins,
const NameVarMap<VariableWrapper>& outs,
const framework::AttributeMap& attrs,
const framework::AttributeMap& default_attrs,
const phi::Place& place) {
OpBaseRunImpl<VariableWrapper>(op, ins, outs, attrs, default_attrs, place);
}
void OpBase::Run(const framework::OperatorBase& op,
const NameVarMap<egr::EagerVariable>& ins,
const NameVarMap<egr::EagerVariable>& outs,
const framework::AttributeMap& attrs,
const framework::AttributeMap& default_attrs,
const phi::Place& place) {
OpBaseRunImpl<egr::EagerVariable>(op, ins, outs, attrs, default_attrs, place);
}
void ClearNoNeedBufferInputs(OpBase* op) {
auto& inferer = op->Info().NoNeedBufferVarsInferer();
if (!inferer) return;
auto* ins = op->GetMutableInsMap();
const auto& no_need_buffer_slots =
inferer(*ins, op->GetOutsMap(), op->Attrs());
if (no_need_buffer_slots.empty()) return;
for (auto& slot : no_need_buffer_slots) {
auto iter = ins->find(slot);
if (iter == ins->end()) continue;
VLOG(2) << "Clear data buffer of " << slot << " in " << op->Type();
PADDLE_ENFORCE_EQ(
iter->second.IsGrad(),
false,
common::errors::InvalidArgument(
"Only forward variable buffers can be clear, this may be a bug"));
for (auto& each_var : *(iter->second.MutableVarList())) {
if (!each_var) continue;
auto& var = each_var->Var();
PADDLE_ENFORCE_EQ(var.IsType<DenseTensor>(),
true,
common::errors::PermissionDenied(
"NoNeedBufferVars only support DenseTensor"));
auto new_var = new VariableWrapper(each_var->Name());
auto* new_tensor = new_var->MutableVar()->GetMutable<DenseTensor>();
auto& old_tensor = var.Get<DenseTensor>();
new_tensor->Resize(old_tensor.dims());
new_tensor->set_lod(old_tensor.lod());
new_tensor->set_type(old_tensor.dtype());
new_tensor->set_layout(old_tensor.layout());
each_var.reset(new_var);
}
}
}
std::shared_ptr<GradOpNode> CreateGradOpNode(
const framework::OperatorBase& op,
const NameVarBaseMap& ins,
const NameVarBaseMap& outs,
const framework::AttributeMap& attrs,
const framework::AttributeMap& default_attrs,
const phi::Place& place,
const std::map<std::string, std::string>& inplace_map) {
const auto& info = op.Info();
if (!info.dygraph_grad_op_maker_) {
return nullptr;
}
auto grad_node = info.dygraph_grad_op_maker_(
op.Type(), ins, outs, attrs, default_attrs, inplace_map);
if (grad_node && !grad_node->empty()) {
for (auto& grad_op : *grad_node) {
grad_op.SetId(OpBase::GenerateUniqueId());
grad_op.SetPlace(place);
ClearNoNeedBufferInputs(&grad_op);
}
return grad_node;
} else {
return nullptr;
}
}
std::shared_ptr<GradOpNode> CreateGradOpNode(
const framework::OperatorBase& op,
const NameTensorMap& ins,
const NameTensorMap& outs,
const framework::AttributeMap& attrs,
const framework::AttributeMap& default_attrs,
const phi::Place& place,
const std::map<std::string, std::string>& inplace_map) {
// Do Nothing in Eager Mode.
return nullptr;
}
} // namespace paddle::imperative