flatten_grad_kernel.cc 2.2 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 25 26 27

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

33
}  // namespace phi
34

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

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

#endif

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

#endif