Files
paddlepaddle--paddle/paddle/fluid/framework/var_desc.h
T
2026-07-13 12:40:42 +08:00

239 lines
6.4 KiB
C++

/* Copyright (c) 2016 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 <algorithm>
#include <atomic>
#include <string>
#include <vector>
#include "glog/logging.h"
#include "paddle/fluid/distributed/auto_parallel/dist_attr.h"
#include "paddle/fluid/framework/attribute.h"
#include "paddle/fluid/framework/type_defs.h"
#include "paddle/phi/core/framework/framework.pb.h"
#include "paddle/utils/test_macros.h"
namespace paddle {
namespace framework {
using phi::distributed::TensorDistAttr;
// convert between std::vector and protobuf repeated.
template <typename T>
inline std::vector<T> RepeatedToVector(
const google::protobuf::RepeatedField<T> &repeated_field) {
std::vector<T> ret;
ret.reserve(repeated_field.size());
std::copy(
repeated_field.begin(), repeated_field.end(), std::back_inserter(ret));
return ret;
}
template <typename T, typename RepeatedField>
inline void VectorToRepeated(const std::vector<T> &vec,
RepeatedField *repeated_field) {
repeated_field->Clear();
repeated_field->Reserve(vec.size());
for (const auto &elem : vec) {
*repeated_field->Add() = elem;
}
}
// Specialize vector<bool>.
template <typename RepeatedField>
inline void VectorToRepeated(const std::vector<bool> &vec,
RepeatedField *repeated_field) {
repeated_field->Clear();
repeated_field->Reserve(vec.size());
for (auto elem : vec) {
*repeated_field->Add() = elem;
}
}
class TEST_API VarDesc {
public:
explicit VarDesc(const std::string &name);
explicit VarDesc(const proto::VarDesc &desc);
// Explicitly implement the copy constructor for auto parallel
VarDesc(const VarDesc &other);
~VarDesc();
VarDesc &operator=(const VarDesc &other) {
desc_ = other.desc_;
attrs_ = other.attrs_;
original_id_ = other.original_id_;
if (other.dist_attr_) {
dist_attr_.reset(new TensorDistAttr(*other.dist_attr_));
}
need_updated_ = true;
return *this;
}
proto::VarDesc *Proto() {
Flush(); // Only flush attrs for auto parallel
return &desc_;
}
const proto::VarDesc *Proto() const { return &desc_; }
std::string Name() const { return desc_.name(); }
void SetName(std::string name) {
desc_.set_name(name);
need_updated_ = true;
}
void SetTensorDescNum(size_t num);
size_t GetTensorDescNum() const;
void SetShape(const std::vector<int64_t> &dims);
void SetShapes(const std::vector<std::vector<int64_t>> &multiple_dims);
std::vector<int64_t> GetShape() const;
std::vector<std::vector<int64_t>> GetShapes() const;
void SetDataType(proto::VarType::Type data_type);
void SetDataTypes(
const std::vector<proto::VarType::Type> &multiple_data_type);
proto::VarType::Type GetDataType() const;
size_t ElementSize() const;
std::vector<proto::VarType::Type> GetDataTypes() const;
void SetLoDLevel(int32_t lod_level);
void SetLoDLevels(const std::vector<int32_t> &multiple_lod_level);
int32_t GetLoDLevel() const;
std::vector<int32_t> GetLoDLevels() const;
void SetLegacyLoDLevel(int32_t legacy_lod_level);
void SetLegacyLoDLevels(
const std::vector<int32_t> &multiple_legacy_lod_level);
int32_t GetLegacyLoDLevel() const;
std::vector<int32_t> GetLegacyLoDLevels() const;
proto::VarType::Type GetType() const;
void SetType(proto::VarType::Type type);
bool Persistable() const { return desc_.persistable(); }
void SetPersistable(bool persistable) {
desc_.set_persistable(persistable);
need_updated_ = true;
}
bool IsParameter() const { return desc_.is_parameter(); }
void SetIsParameter(bool is_parameter) {
desc_.set_is_parameter(is_parameter);
need_updated_ = true;
}
void ClearIsParameter() {
desc_.clear_is_parameter();
need_updated_ = true;
}
bool HasIsParameter() const { return desc_.has_is_parameter(); }
bool StopGradient() const { return desc_.stop_gradient(); }
void SetStopGradient(bool stop_gradient) {
desc_.set_stop_gradient(stop_gradient);
need_updated_ = true;
}
void ClearStopGradient() {
desc_.clear_stop_gradient();
need_updated_ = true;
}
bool HasStopGradient() const { return desc_.has_stop_gradient(); }
bool NeedCheckFeed() const { return desc_.need_check_feed(); }
void SetNeedCheckFeed(bool need_check_feed) {
desc_.set_need_check_feed(need_check_feed);
need_updated_ = true;
}
bool HasAttr(const std::string &name) const {
return attrs_.find(name) != attrs_.end();
}
std::vector<std::string> AttrNames() const;
void SetAttr(const std::string &name, const Attribute &v);
void RemoveAttr(const std::string &name);
Attribute GetAttr(const std::string &name) const;
bool NeedUpdate() const { return need_updated_; }
void SetNeedUpdate(bool need) { need_updated_ = need; }
void Flush();
// The following methods are only used for auto parallel.
uint64_t Id() const { return id_; }
uint64_t OriginalId() const { return original_id_; }
void SetOriginalId(uint64_t original_id) {
original_id_ = original_id;
need_updated_ = true;
}
TensorDistAttr *MutableDistAttr();
void SetDistAttr(const TensorDistAttr &dist_attr);
private:
const proto::VarType::TensorDesc &tensor_desc() const;
std::vector<proto::VarType::TensorDesc> tensor_descs() const;
proto::VarType::TensorDesc *mutable_tensor_desc();
std::vector<proto::VarType::TensorDesc *> mutable_tensor_descs();
// Is it really needed? Or just maintain a ptr from the block?
proto::VarDesc desc_;
AttributeMap attrs_;
bool need_updated_{false};
// Note: the following members are only used for auto parallel for now
static uint64_t GenerateId() {
static std::atomic<std::uint64_t> uid{0};
return ++uid;
}
uint64_t id_ = GenerateId();
uint64_t original_id_ = id_;
std::unique_ptr<TensorDistAttr> dist_attr_;
};
bool operator==(const VarDesc &left, const VarDesc &right);
} // namespace framework
} // namespace paddle