elementwise_grad_kernel.cu 6.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
//   Copyright (c) 2022 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.

15
#include "paddle/phi/kernels/elementwise_grad_kernel.h"
16

17 18 19 20 21 22
#include "paddle/phi/backends/gpu/gpu_context.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/copy_kernel.h"
#include "paddle/phi/kernels/funcs/elementwise_functor.h"
#include "paddle/phi/kernels/gpu/elementwise.h"
#include "paddle/phi/kernels/impl/elementwise_grad_kernel_impl.h"
23

24
namespace phi {
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

template <typename T>
void AddGradFunc(const GPUContext& dev_ctx,
                 const DenseTensor& x,
                 const DenseTensor& y,
                 const DenseTensor& out,
                 const DenseTensor& dout,
                 DenseTensor* dx,
                 DenseTensor* dy,
                 int axis = -1) {
  if (dx != nullptr && dy != nullptr && (dx->dims() == dy->dims())) {
    elementwise_add_grad<T>(dev_ctx, x, y, out, dout, dx, dy);
  } else {
    default_elementwise_add_grad<T>(dev_ctx, x, y, out, dout, dx, dy, axis);
  }
}

template <typename T, typename Context>
void AddGradKernel(const Context& dev_ctx,
                   const DenseTensor& x,
                   const DenseTensor& y,
                   const DenseTensor& dout,
                   int axis,
                   DenseTensor* dx,
                   DenseTensor* dy) {
50
  phi::AddGradImpl<T>(dev_ctx, x, y, dout, axis, dx, dy, AddGradFunc<T>);
51 52 53 54 55 56 57 58 59 60
}

template <typename T, typename Context>
void AddDoubleGradKernel(const Context& dev_ctx,
                         const DenseTensor& y,
                         paddle::optional<const DenseTensor&> ddx,
                         paddle::optional<const DenseTensor&> ddy,
                         const DenseTensor& dout,
                         int axis,
                         DenseTensor* ddout) {
61 62 63 64 65 66 67 68 69
  phi::AddDoubleGradImpl<T>(dev_ctx,
                            y,
                            ddx,
                            ddy,
                            dout,
                            axis,
                            ddout,
                            ElementwiseCompute<funcs::AddFunctor<T>, T>,
                            ElementwiseCompute<funcs::InverseAddFunctor<T>, T>);
70 71 72 73 74 75 76 77 78 79
}

template <typename T, typename Context>
void AddTripleGradKernel(const Context& dev_ctx,
                         const DenseTensor& ddx,
                         const DenseTensor& ddy,
                         const DenseTensor& d_ddout,
                         int axis,
                         DenseTensor* d_ddx,
                         DenseTensor* d_ddy) {
80
  phi::AddGradImpl<T>(
81 82 83
      dev_ctx, ddx, ddy, d_ddout, axis, d_ddx, d_ddy, AddGradFunc<T>);
}

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
template <typename T, typename Context>
void SubtractGradKernel(const Context& dev_ctx,
                        const DenseTensor& x,
                        const DenseTensor& y,
                        const DenseTensor& dout,
                        int axis,
                        DenseTensor* dx,
                        DenseTensor* dy) {
  // skip out
  auto* out = &dout;
  if (dx != nullptr && dy != nullptr && (dx->dims() == dy->dims())) {
    elementwise_sub_grad<T>(dev_ctx, x, y, *out, dout, dx, dy);
  } else {
    default_elementwise_sub_grad<T>(dev_ctx, x, y, *out, dout, dx, dy, axis);
  }
}

template <typename T, typename Context>
void SubtractDoubleGradKernel(const Context& dev_ctx,
                              const DenseTensor& y,
                              paddle::optional<const DenseTensor&> ddx,
                              paddle::optional<const DenseTensor&> ddy,
                              const DenseTensor& dout,
                              int axis,
                              DenseTensor* ddout) {
109
  phi::SubtractDoubleGradImpl<T>(
110 111 112 113 114 115 116 117 118 119
      dev_ctx,
      y,
      ddx,
      ddy,
      dout,
      axis,
      ddout,
      ElementwiseCompute<funcs::SubtractFunctor<T>, T>);
}

120
}  // namespace phi
121

122
PD_REGISTER_KERNEL(add_grad,
123 124
                   GPU,
                   ALL_LAYOUT,
125
                   phi::AddGradKernel,
126 127 128 129
                   float,
                   double,
                   int,
                   int64_t,
130 131 132
                   phi::dtype::float16,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}
133

134
PD_REGISTER_KERNEL(add_double_grad,
135 136
                   GPU,
                   ALL_LAYOUT,
137
                   phi::AddDoubleGradKernel,
138 139 140 141
                   float,
                   double,
                   int,
                   int64_t,
142 143 144
                   phi::dtype::float16,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}
145

146
PD_REGISTER_KERNEL(add_triple_grad,
147 148
                   GPU,
                   ALL_LAYOUT,
149
                   phi::AddTripleGradKernel,
150 151 152 153
                   float,
                   double,
                   int,
                   int64_t,
154 155 156
                   phi::dtype::float16,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}
157

158
PD_REGISTER_KERNEL(subtract_grad,
159 160
                   GPU,
                   ALL_LAYOUT,
161
                   phi::SubtractGradKernel,
162 163 164 165
                   float,
                   double,
                   int,
                   int64_t,
166 167 168
                   phi::dtype::float16,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}
169

170
PD_REGISTER_KERNEL(subtract_double_grad,
171 172
                   GPU,
                   ALL_LAYOUT,
173
                   phi::SubtractDoubleGradKernel,
174 175 176 177
                   float,
                   double,
                   int,
                   int64_t,
178 179 180
                   phi::dtype::float16,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}