From a09058b23f42e6db92c76fa9171e42af9e88a0d0 Mon Sep 17 00:00:00 2001 From: Aganlengzi Date: Thu, 31 Mar 2022 09:49:10 +0800 Subject: [PATCH] move inplace_version_counter_ location (#41146) --- paddle/phi/core/dense_tensor.h | 19 +++++++++++++++++++ paddle/phi/core/dense_tensor.inl | 17 ----------------- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/paddle/phi/core/dense_tensor.h b/paddle/phi/core/dense_tensor.h index 0dddd63099b..a740a9a5725 100644 --- a/paddle/phi/core/dense_tensor.h +++ b/paddle/phi/core/dense_tensor.h @@ -171,6 +171,25 @@ class DenseTensor : public TensorBase, DenseTensorMeta meta_; std::shared_ptr holder_; + public: + /* Temporarily put InplaceVersion inside DenseTensor. + Will move to AutogradMeta as soon as we switch to Eager Dygraph. + */ + class InplaceVersion { + public: + bool IsUnique() const { return inplace_version_ == 0; } + void Bump() { ++inplace_version_; } + uint32_t CurrentVersion() const { return inplace_version_; } + void SetInplaceVersionToZero() { inplace_version_ = 0; } + + private: + uint32_t inplace_version_{0}; + }; + + protected: + std::shared_ptr inplace_version_counter_{ + std::make_shared()}; + #ifndef PADDLE_WITH_CUSTOM_KERNEL #include "paddle/phi/core/dense_tensor.inl" #endif diff --git a/paddle/phi/core/dense_tensor.inl b/paddle/phi/core/dense_tensor.inl index a422a95346e..804360ea941 100644 --- a/paddle/phi/core/dense_tensor.inl +++ b/paddle/phi/core/dense_tensor.inl @@ -21,20 +21,6 @@ limitations under the License. */ Will be adjusted/removed/moved in the near future */ public: -/* Temporarily put InplaceVersion inside DenseTensor. -Will move to AutogradMeta as soon as we switch to Eager Dygraph. -*/ -class InplaceVersion { -public: - bool IsUnique() const { return inplace_version_ == 0; } - void Bump() { ++inplace_version_; } - uint32_t CurrentVersion() const { return inplace_version_; } - void SetInplaceVersionToZero() { inplace_version_ = 0; } - -private: - uint32_t inplace_version_{0}; -}; - /* @jim19930609: Remove dependency on protobuf after Tensor Unification. */ explicit DenseTensor(paddle::experimental::DataType dtype); @@ -131,9 +117,6 @@ std::vector Split(int64_t split_size, int64_t axis) const; std::vector Chunk(int64_t chunks, int64_t axis) const; -protected: -std::shared_ptr inplace_version_counter_{std::make_shared()}; - /* @jim19930609: This is a hack In general, it is badly designed to fuse MKLDNN-specific objects into a generic Tensor. -- GitLab