accumulation_node.cc 6.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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.

#include "paddle/fluid/eager/accumulation/accumulation_node.h"
16 17

#include "glog/logging.h"
18
#include "paddle/fluid/eager/api/generated/eager_generated/forwards/dygraph_functions.h"
19
#include "paddle/fluid/eager/eager_tensor.h"
J
Jiabin Yang 已提交
20
#include "paddle/fluid/eager/utils.h"
21
#include "paddle/fluid/imperative/gradient_accumulator.h"
22 23 24
#include "paddle/fluid/platform/device_context.h"
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/errors.h"
25 26
#include "paddle/phi/api/all.h"
#include "paddle/phi/core/dense_tensor.h"
27
#include "paddle/phi/core/sparse_coo_tensor.h"
28

29 30
namespace egr {

31 32
static void CopyOrAddTensor(paddle::Tensor* tensor,
                            const paddle::Tensor& t,
J
Jiabin Yang 已提交
33 34
                            bool is_fake_empty) {
  if (is_fake_empty) {
J
Jiabin Yang 已提交
35
    VLOG(3) << "Move Tensor ptr: " << t.impl();
36 37
    *tensor = t;
  } else {
J
Jiabin Yang 已提交
38 39
    if (!tensor->defined() || !tensor->initialized()) {
      // Simply copy tensor->impl
J
Jiabin Yang 已提交
40
      VLOG(3) << "Move Tensor ptr: " << t.impl();
J
Jiabin Yang 已提交
41 42
      *tensor = t;
    } else {
J
Jiabin Yang 已提交
43 44
      VLOG(3) << "Add Tensor ptr: " << t.impl()
              << " with Tensor ptr: " << tensor->impl();
J
Jiabin Yang 已提交
45 46 47
      // Accumulation
      if (LIKELY(t.is_dense_tensor())) {
        if (LIKELY(tensor->is_dense_tensor())) {
48
          if (t.is_custom_device()) {
49
            add__ad_func(*tensor, t);
50
          } else {
51
            paddle::imperative::TensorAdd<paddle::Tensor>(t, tensor);
52
          }
J
Jiabin Yang 已提交
53 54 55 56
        } else {
          // TODO(jiabin): Support Other TensorBase later
          // TODO(zhanlve): Replace SelectedRowsAddTensor with
          // add_dygraph_function once it's supported
57 58
          paddle::Tensor new_buffer(std::make_shared<phi::DenseTensor>(),
                                    "tmp_accumulator");
J
Jiabin Yang 已提交
59 60 61
          paddle::imperative::SelectedRowsAddTensor(*tensor, t, &new_buffer);
          tensor->set_impl(new_buffer.impl());
        }
62 63 64 65 66
      } else if (LIKELY(t.is_sparse_coo_tensor())) {
        // In fact, the gradient of SparseTensor is still a SparseTensor
        if (LIKELY(tensor->is_sparse_coo_tensor())) {
          auto t_sparse =
              std::dynamic_pointer_cast<phi::SparseCooTensor>(t.impl());
67 68
          paddle::Tensor t_values(std::make_shared<phi::DenseTensor>(
              t_sparse->non_zero_elements()));
69 70
          auto tensor_sparse =
              std::dynamic_pointer_cast<phi::SparseCooTensor>(tensor->impl());
71 72
          paddle::Tensor tensor_values(std::make_shared<phi::DenseTensor>(
              tensor_sparse->non_zero_elements()));
73
          if (t.is_custom_device()) {
74
            add__ad_func(tensor_values, t_values);
75
          } else {
76 77
            paddle::imperative::TensorAdd<paddle::Tensor>(t_values,
                                                          &tensor_values);
78
          }
79
        }
80 81 82
      } else {
        // TODO(jiabin): Support Other TensorBase later
        // TODO(zhanlve): Replace SelectedRowsAddTensor with
J
Jiabin Yang 已提交
83 84 85 86 87
        // add_dygraph_function
        // once it's supported
        if (tensor->is_dense_tensor()) {
          paddle::imperative::SelectedRowsAddToTensor(t, tensor);
        } else {
88 89 90
          *tensor =
              std::move(*paddle::imperative::SelectedRowsMerge<paddle::Tensor>(
                  t, *tensor));
J
Jiabin Yang 已提交
91
        }
92 93
      }
    }
94 95 96
  }
}

97
paddle::small_vector<std::vector<paddle::Tensor>, kSlotSmallVectorSize>
98
GradNodeAccumulation::operator()(
99
    paddle::small_vector<std::vector<paddle::Tensor>,
100
                         kSlotSmallVectorSize>& grads,  // NOLINT
101 102
    bool create_graph,
    bool is_new_grad) {
J
Jiabin Yang 已提交
103
  VLOG(3) << "Running AD API Grad: GradNodeAccumulation";
104 105 106 107 108 109 110 111 112
  PADDLE_ENFORCE(grads.size() == 1,
                 paddle::platform::errors::Fatal(
                     "GradNodeAccumulation should take exactly 1 grad tensor"
                     "However received: %d slot.",
                     grads.size()));
  PADDLE_ENFORCE(grads[0].size() == 1,
                 paddle::platform::errors::Fatal(
                     "GradNodeAccumulation should take exactly 1 grad tensor"
                     "However received: %d in slot %d .",
113 114
                     grads[0].size(),
                     0));
115
  // Apply Gradient Hooks
116
  paddle::Tensor grad_out;
117
  if (GradientHooksRegistered()) {
118
    paddle::small_vector<std::vector<paddle::Tensor>, kSlotSmallVectorSize>
119
        hooked_grads = ApplyGradientHooks(grads);
120
    grad_out = hooked_grads[0][0];
121
  } else {
122
    grad_out = grads[0][0];
123 124
  }

125
  if (!weak_grad_.expired() && !is_new_grad) {
126
    auto grad = weak_grad_.lock();
127 128 129 130
    if (grad_out.defined() && grad_out.initialized()) {
      CopyOrAddTensor(grad.get(), grad_out, is_fake_empty_);
    }
    // else { do nothing since there is no valid value in grad out tensor }
J
Jiabin Yang 已提交
131
    is_fake_empty_ = false;
132 133 134 135 136 137
  }

  // Apply Reduce Hooks
  if (ReduceHooksRegistered()) {
    ApplyReduceHooks();
  }
J
Jiabin Yang 已提交
138 139 140
  VLOG(3) << "Finish AD API Grad: GradNodeAccumulation";
  if (VLOG_IS_ON(4)) {
    const char* INPUT_PRINT_TEMPLATE = "{ Input: [%s], Output: [%s] } ";
141

J
Jiabin Yang 已提交
142 143 144 145 146 147 148 149 150 151 152 153
    std::string input_str = "";
    std::string output_str = "";
    const char* TENSOR_OUT_GRAD_TEMPLATE = "(grads[0][0], [%s]), ";
    std::string input_out_grad_str = paddle::string::Sprintf(
        TENSOR_OUT_GRAD_TEMPLATE, egr::EagerUtils::TensorStr(grads[0][0]));
    const char* TENSOR_X_GRAD_TEMPLATE = "(grad_out, [%s]), ";
    std::string output_x_grad_str = paddle::string::Sprintf(
        TENSOR_X_GRAD_TEMPLATE, egr::EagerUtils::TensorStr(grad_out));
    output_str += output_x_grad_str;
    VLOG(4) << paddle::string::Sprintf(
        INPUT_PRINT_TEMPLATE, input_str, output_str);
  }
154
  return {{grad_out}};
155 156
}

157
void GradNodeAccumulation::RegisterReduceHook(
158
    std::shared_ptr<VoidHook>&& hook) {
159
  reduce_hooks_.emplace_back(std::move(hook));
160 161 162 163
}

void GradNodeAccumulation::ApplyReduceHooks() {
  for (auto& hook : reduce_hooks_) {
164
    (*hook)();
165 166
  }
}
167
}  // namespace egr