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

15 16 17 18
#include "paddle/phi/kernels/reshape_grad_kernel.h"
#include "paddle/phi/backends/all_context.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/copy_kernel.h"
19

20
namespace phi {
21 22 23 24 25 26

template <typename Context>
void ReshapeGradKernel(const Context& dev_ctx,
                       const DenseTensor& out_grad,
                       DenseTensor* x_grad) {
  auto x_dims = x_grad->dims();
27
  phi::Copy(dev_ctx, out_grad, dev_ctx.GetPlace(), false, x_grad);
28 29 30 31 32
  x_grad->Resize(x_dims);
}

template <typename Context>
void ReshapeDoubleGradKernel(const Context& dev_ctx,
33
                             const DenseTensor& out_grad,
34 35 36 37 38
                             const DenseTensor& x_grad_grad,
                             DenseTensor* out_grad_grad) {
  ReshapeGradKernel(dev_ctx, x_grad_grad, out_grad_grad);
}

39
}  // namespace phi
40

41
PD_REGISTER_GENERAL_KERNEL(reshape_grad,
42 43
                           CPU,
                           ALL_LAYOUT,
44
                           phi::ReshapeGradKernel<phi::CPUContext>,
45
                           ALL_DTYPE) {}
46
PD_REGISTER_GENERAL_KERNEL(reshape_double_grad,
47 48
                           CPU,
                           ALL_LAYOUT,
49
                           phi::ReshapeDoubleGradKernel<phi::CPUContext>,
50 51 52
                           ALL_DTYPE) {}

#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
53
PD_REGISTER_GENERAL_KERNEL(reshape_grad,
54 55
                           GPU,
                           ALL_LAYOUT,
56
                           phi::ReshapeGradKernel<phi::GPUContext>,
57
                           ALL_DTYPE) {}
58
PD_REGISTER_GENERAL_KERNEL(reshape_double_grad,
59 60
                           GPU,
                           ALL_LAYOUT,
61
                           phi::ReshapeDoubleGradKernel<phi::GPUContext>,
62 63 64 65
                           ALL_DTYPE) {}
#endif

#ifdef PADDLE_WITH_XPU
66
PD_REGISTER_GENERAL_KERNEL(reshape_grad,
67 68
                           XPU,
                           ALL_LAYOUT,
69
                           phi::ReshapeGradKernel<phi::XPUContext>,
70
                           ALL_DTYPE) {}
71
PD_REGISTER_GENERAL_KERNEL(reshape_double_grad,
72 73
                           XPU,
                           ALL_LAYOUT,
74
                           phi::ReshapeDoubleGradKernel<phi::XPUContext>,
75 76
                           ALL_DTYPE) {}
#endif