flatten_grad_kernel.cc 2.3 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
#include "paddle/phi/kernels/flatten_grad_kernel.h"
16

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

21
namespace phi {
22 23 24 25

template <typename T, typename Context>
void FlattenGradKernel(const Context& dev_ctx,
                       const DenseTensor& xshape,
26
                       const DenseTensor& out_grad,
27 28
                       DenseTensor* x_grad) {
  auto xshape_dims = xshape.dims();
29
  dev_ctx.Alloc(x_grad, out_grad.dtype());
30
  auto x_dims = phi::slice_ddim(xshape_dims, 1, xshape_dims.size());
31 32
  phi::Copy(dev_ctx, out_grad, dev_ctx.GetPlace(), false, x_grad);
  x_grad->Resize(x_dims);
33 34
}

35
}  // namespace phi
36

37
PD_REGISTER_KERNEL(flatten_grad,
38 39
                   CPU,
                   ALL_LAYOUT,
40
                   phi::FlattenGradKernel,
41 42 43 44 45 46
                   float,
                   double,
                   uint8_t,
                   int8_t,
                   int,
                   int64_t) {}
47 48

#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
49
PD_REGISTER_KERNEL(flatten_grad,
50 51
                   GPU,
                   ALL_LAYOUT,
52
                   phi::FlattenGradKernel,
53
                   float,
54
                   phi::dtype::float16,
55 56 57 58 59
                   double,
                   uint8_t,
                   int8_t,
                   int,
                   int64_t) {}
60 61 62 63

#endif

#ifdef PADDLE_WITH_XPU
64
PD_REGISTER_KERNEL(flatten_grad,
65 66
                   XPU,
                   ALL_LAYOUT,
67
                   phi::FlattenGradKernel,
68
                   float,
69
                   phi::dtype::float16,
70 71 72
                   int8_t,
                   int,
                   int64_t) {}
73 74

#endif