dropout_grad_kernel.cu 3.3 KB
Newer Older
H
hong 已提交
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 16
#include "paddle/phi/kernels/dropout_grad_kernel.h"

H
hong 已提交
17 18 19 20 21 22 23 24 25 26
#include "paddle/fluid/operators/dropout_impl.cu.h"
#include "paddle/phi/backends/gpu/gpu_context.h"
#include "paddle/phi/core/kernel_registry.h"

namespace phi {

template <typename T, typename Context>
void DropoutGradRawKernel(const Context& dev_ctx,
                          const DenseTensor& mask,
                          const DenseTensor& out_grad,
27
                          const Scalar& p,
H
hong 已提交
28 29 30
                          bool is_test,
                          const std::string& mode,
                          DenseTensor* x_grad) {
31
  bool upscale_in_train = (mode == "upscale_in_train");
32
  dev_ctx.template Alloc<T>(x_grad);
33 34 35 36 37 38 39 40
  paddle::operators::DropoutGradGPUKernelDriver<T>(dev_ctx,
                                                   is_test,
                                                   p.to<float>(),
                                                   upscale_in_train,
                                                   out_grad,
                                                   mask,
                                                   x_grad,
                                                   false);
41 42 43 44 45 46
}

template <typename T, typename Context>
void DropoutNdGradKernel(const Context& dev_ctx,
                         const DenseTensor& mask,
                         const DenseTensor& out_grad,
47
                         const Scalar& p,
48 49 50 51 52 53
                         bool is_test,
                         const std::string& mode,
                         const std::vector<int>& axis,
                         DenseTensor* x_grad) {
  bool upscale_in_train = (mode == "upscale_in_train");
  dev_ctx.template Alloc<T>(x_grad);
54 55 56 57 58 59 60 61
  paddle::operators::DropoutGradGPUKernelDriver<T>(dev_ctx,
                                                   is_test,
                                                   p.to<float>(),
                                                   upscale_in_train,
                                                   out_grad,
                                                   mask,
                                                   x_grad,
                                                   true);
H
hong 已提交
62 63 64 65 66 67 68 69 70 71 72 73
}

}  // namespace phi

PD_REGISTER_KERNEL(dropout_grad,
                   GPU,
                   ALL_LAYOUT,
                   phi::DropoutGradRawKernel,
                   float,
                   double,
                   phi::dtype::bfloat16,
                   phi::dtype::float16) {}
74 75 76 77 78 79 80 81 82

PD_REGISTER_KERNEL(dropout_nd_grad,
                   GPU,
                   ALL_LAYOUT,
                   phi::DropoutNdGradKernel,
                   float,
                   double,
                   phi::dtype::bfloat16,
                   phi::dtype::float16) {}