reshape_grad_kernel.cc 2.8 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 33 34 35 36 37
  x_grad->Resize(x_dims);
}

template <typename Context>
void ReshapeDoubleGradKernel(const Context& dev_ctx,
                             const DenseTensor& x_grad_grad,
                             DenseTensor* out_grad_grad) {
  ReshapeGradKernel(dev_ctx, x_grad_grad, out_grad_grad);
}

38
}  // namespace phi
39

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

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

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