grad_tensor_holder.h 2.1 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 31 32 33 34 35 36 37 38 39
// 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:
  explicit GradTensorHolder(const std::vector<GradSlotMeta>& meta) {
    VLOG(7) << "Init GradTensorHolder with meta size: " << meta.size();
    buffer_.resize(meta.size());
    for (size_t i = 0; i < buffer_.size(); i++) {
      VLOG(7) << "Init GradTensorHolder with meta rank: " << meta[i].Size();
      buffer_[i].resize(meta[i].Size());
    }
  }

  GradTensorHolder(const GradTensorHolder& other) = default;

40 41
  explicit GradTensorHolder(
      std::vector<std::vector<paddle::experimental::Tensor>>&& inputs)
42 43 44 45 46
      : buffer_(std::move(inputs)) {}

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

  // Create new tensor and copy tensor->impl
47
  void add(size_t slot_id, size_t rank, const paddle::experimental::Tensor& t,
48 49
           bool fill_one = false);

50 51
  const std::vector<paddle::experimental::Tensor>& operator[](
      const size_t& pos) {
52 53 54
    return buffer_[pos];
  }

55
  const std::vector<std::vector<paddle::experimental::Tensor>>& Buffers() {
56 57 58
    return buffer_;
  }

59 60
  void SetBufferSlotRankZeros(size_t slot_id, size_t rank);

61
 private:
62
  std::vector<std::vector<paddle::experimental::Tensor>> buffer_;
63 64 65
};

}  // namespace egr