tensor_wrapper.h 6.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
// Copyright (c) 2021 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.

/**
 * We now still need TensorWrapper and it is designed to Copy
 * tensor in autograd mode.
 *
 * Since in autograd usage, we need to pass autograd_meta to
 * backward computation however in tensor interface add to much
 * autograd_related method is not a good choice.
 *
 * In TensorWrapper we will keep autograd info to backward, only
 * for input var, but for output var it will only copy autograd
 * with no grad **/

#pragma once
#include "paddle/fluid/eager/autograd_meta.h"
#include "paddle/fluid/eager/grad_node_info.h"
#include "paddle/fluid/eager/utils.h"
31
#include "paddle/phi/api/lib/utils/allocator.h"
32 33 34 35 36

namespace egr {
class TensorWrapper {
 public:
  TensorWrapper() = default;
37
  explicit TensorWrapper(const paddle::experimental::Tensor& tensor,
38
                         bool no_need_buffer = false) {
39 40 41 42 43 44 45 46 47
    // set inplace_version_snapshot_ according to tensor's current inplace
    // version.
    if (tensor.impl() && phi::DenseTensor::classof(tensor.impl().get())) {
      phi::DenseTensor* dense_tensor =
          static_cast<phi::DenseTensor*>(tensor.impl().get());
      auto& inplace_version_counter = dense_tensor->InplaceVersionCounter();
      inplace_version_snapshot_ = inplace_version_counter.CurrentVersion();
    }

48
    /**
49 50 51
     * Normally, we should only save data and part of autograd_meta of fwd
     * tensor, and should not reserve its original grad_node,
     * to avoid recursive and additional depends on GradNodeBase
52
     * **/
53
    auto* tensor_autograd_meta = EagerUtils::nullable_autograd_meta(tensor);
54
    no_need_buffer_ = no_need_buffer;
55
    // shallow copy tensor_impl here
56 57 58 59 60
    if (no_need_buffer) {
      if (phi::DenseTensor::classof(tensor.impl().get())) {
        // Only Copy Meta
        phi::DenseTensor* dense_tensor =
            static_cast<phi::DenseTensor*>(tensor.impl().get());
61 62 63 64 65 66
        // TODO(jiabin): It's not a good idea to set memory size to zero, find
        // another way and change this.
        intermidiate_tensor_.set_impl(
            std::move(std::make_shared<phi::DenseTensor>(
                std::make_shared<phi::Allocation>(nullptr, 0, tensor.place()),
                std::move(dense_tensor->meta()))));
67 68 69 70 71 72 73
      } else {
        PADDLE_THROW(paddle::platform::errors::Fatal(
            "Unrecognized tensor type for no_need_buffer feature"));
      }
    } else {
      intermidiate_tensor_.set_impl(tensor.impl());
    }
74

75 76 77 78
    if (VLOG_IS_ON(7)) {
      // TODO(jiabin): This may has server performance issue
      intermidiate_tensor_.set_name(tensor.name() + "@Saved");
    }
79

80
    if (tensor_autograd_meta) {
81 82 83
      auto autograd_meta =
          std::make_shared<AutogradMeta>(*tensor_autograd_meta);
      autograd_meta->ResetGradNode();
84 85
      intermidiate_tensor_.set_autograd_meta(autograd_meta);
      weak_grad_node_ = tensor_autograd_meta->GetMutableGradNode();
86
    }
87 88
  }

89
  paddle::experimental::Tensor recover() {
90 91 92
    VLOG(6) << "Recover tensor: " << intermidiate_tensor_.name()
            << " for wrapper";
    if (!intermidiate_tensor_.defined()) {
93
      VLOG(6) << "Return NULL tensor Here. ";
94
      return paddle::experimental::Tensor();
95 96
    }

97
    check_inplace_version();
98

99 100 101 102
    paddle::experimental::Tensor recovered_tensor = intermidiate_tensor_;

    std::shared_ptr<GradNodeBase> new_grad_node = weak_grad_node_.lock();
    if (new_grad_node) {
J
Jiabin Yang 已提交
103
      VLOG(7) << "Recovered TensorWrapper with GradNode "
104
              << new_grad_node->name() << " addr: " << new_grad_node.get();
105
    } else {
J
Jiabin Yang 已提交
106
      VLOG(7) << "Recovered TensorWrapper with Empty GradNode";
107 108 109
    }
    auto* intermediate_autograd_meta =
        EagerUtils::nullable_autograd_meta(intermidiate_tensor_);
110

111 112 113
    if (intermediate_autograd_meta) {
      auto p_ab_autograd_meta =
          std::make_shared<AutogradMeta>(*intermediate_autograd_meta);
114
      if (new_grad_node) {
115
        p_ab_autograd_meta->SetGradNode(new_grad_node);
116
      }
117
      recovered_tensor.set_autograd_meta(p_ab_autograd_meta);
118
    }
119 120

    return recovered_tensor;
121 122
  }

123 124 125 126
  paddle::experimental::Tensor get_intermidiate_tensor() {
    return intermidiate_tensor_;
  }

127 128 129
  void clear() { intermidiate_tensor_.reset(); }

 private:
130 131
  void check_inplace_version() {
    if (no_need_buffer_) {
J
Jiabin Yang 已提交
132
      VLOG(7) << "There's no need to check inplace_version because "
133 134 135 136 137 138 139 140 141
                 "no_need_buffer_ is true.";
      return;
    }
    if (intermidiate_tensor_.impl() &&
        phi::DenseTensor::classof(intermidiate_tensor_.impl().get())) {
      phi::DenseTensor* dense_tensor =
          static_cast<phi::DenseTensor*>(intermidiate_tensor_.impl().get());
      auto& inplace_version_counter = dense_tensor->InplaceVersionCounter();

142 143
      uint32_t wrapper_version_snapshot = inplace_version_snapshot_;
      uint32_t tensor_version = inplace_version_counter.CurrentVersion();
144
      PADDLE_ENFORCE_EQ(
145 146
          tensor_version,
          wrapper_version_snapshot,
147 148 149 150 151 152 153
          paddle::platform::errors::PermissionDenied(
              "Tensor '%s' used in gradient computation has been "
              "modified by an inplace operation. "
              "Its version is %d but the expected version is %d. "
              "Please fix your code to void calling an inplace operator "
              "after using the Tensor which will used in gradient "
              "computation.",
154 155
              intermidiate_tensor_.name(),
              tensor_version,
156
              wrapper_version_snapshot));
J
Jiabin Yang 已提交
157
      VLOG(7) << " The wrapper_version_snapshot of Tensor '"
158
              << intermidiate_tensor_.name() << "' is [ "
159
              << wrapper_version_snapshot << " ]";
J
Jiabin Yang 已提交
160
      VLOG(7) << " The tensor_version of Tensor '"
161 162
              << intermidiate_tensor_.name() << "' is [ " << tensor_version
              << " ]";
163 164 165
    }
  }

166
 private:
167
  bool no_need_buffer_ = false;
168
  paddle::experimental::Tensor intermidiate_tensor_;
169
  std::weak_ptr<egr::GradNodeBase> weak_grad_node_;
170
  uint32_t inplace_version_snapshot_ = 0;
171 172
};
}  // namespace egr