grad_tensor_holder.h 2.6 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
// 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.

#pragma once

#include "paddle/fluid/eager/grad_node_info.h"

namespace egr {

/**
 * Input Buffer is designed for backward grad accumulate.
 * Since we will have one output used by multi preceding ops in forward pass,
 * we will meet a problem that we need to accumulate multiple grads into one.
 *
 * GradTensorHolder should have as same format as forward output **/
class GradTensorHolder {
 public:
29
  explicit GradTensorHolder(
30 31
      const paddle::small_vector<std::vector<GradSlotMeta>,
                                 kSlotSmallVectorSize>& metas) {
32 33
    VLOG(7) << "Init GradTensorHolder with meta size: " << metas.size();
    buffer_.resize(metas.size());
34
    for (size_t i = 0; i < buffer_.size(); i++) {
35 36
      VLOG(7) << "Init GradTensorHolder with meta rank: " << metas[i].size();
      buffer_[i].resize(metas[i].size());
37 38 39 40 41
    }
  }

  GradTensorHolder(const GradTensorHolder& other) = default;

42
  explicit GradTensorHolder(
43 44
      paddle::small_vector<std::vector<paddle::experimental::Tensor>,
                           kSlotSmallVectorSize>&& inputs)
45 46 47 48 49
      : buffer_(std::move(inputs)) {}

  GradTensorHolder& operator=(const GradTensorHolder& other) = default;

  // Create new tensor and copy tensor->impl
50 51
  void add(size_t slot_id, size_t rank, const paddle::experimental::Tensor& t,
           bool create_graph = false);
52 53 54
  void CopyValueFromTensor(size_t slot_id, size_t rank,
                           const paddle::experimental::Tensor& t,
                           bool fill_one = false);
55

56 57
  const std::vector<paddle::experimental::Tensor>& operator[](
      const size_t& pos) {
58 59 60
    return buffer_[pos];
  }

61 62 63
  paddle::small_vector<std::vector<paddle::experimental::Tensor>,
                       kSlotSmallVectorSize>&
  Buffers() {
64 65 66
    return buffer_;
  }

67 68
  void SetBufferSlotRankZeros(size_t slot_id, size_t rank);

69
 private:
70 71 72
  paddle::small_vector<std::vector<paddle::experimental::Tensor>,
                       kSlotSmallVectorSize>
      buffer_;
73 74 75
};

}  // namespace egr