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 16 17 18
#include "paddle/phi/kernels/flatten_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

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

34
}  // namespace phi
35

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

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

#endif

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

#endif