full_kernel.cc 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2022 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/selected_rows/full_kernel.h"
16

17
#include "paddle/phi/backends/cpu/cpu_context.h"
18
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
19
#include "paddle/phi/backends/gpu/gpu_context.h"
20
#endif
21 22
#include "paddle/phi/common/bfloat16.h"
#include "paddle/phi/common/complex.h"
23 24
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/full_kernel.h"
25

26
namespace phi {
27
namespace sr {
28 29

template <typename T, typename Context>
30
void FullKernel(const Context& dev_ctx,
31
                const IntArray& shape,
32 33 34
                const Scalar& val,
                DataType dtype,
                SelectedRows* out) {
35
  phi::FullKernel<T>(dev_ctx, shape, val, dtype, out->mutable_value());
36 37
}

38
}  // namespace sr
39
}  // namespace phi
40

41
PD_REGISTER_KERNEL(full_sr,
42 43
                   CPU,
                   ALL_LAYOUT,
44
                   phi::sr::FullKernel,
45 46 47 48 49 50 51
                   float,
                   double,
                   uint8_t,
                   int16_t,
                   int,
                   int64_t,
                   bool,
52 53 54 55
                   phi::dtype::float16,
                   phi::dtype::bfloat16,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}
56 57

#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
58
PD_REGISTER_KERNEL(full_sr,
59 60
                   GPU,
                   ALL_LAYOUT,
61
                   phi::sr::FullKernel,
62 63 64 65 66 67 68
                   float,
                   double,
                   uint8_t,
                   int16_t,
                   int,
                   int64_t,
                   bool,
69 70 71
                   phi::dtype::float16,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}
72
#endif
73 74 75 76 77 78 79 80 81 82 83 84 85 86

#if defined(PADDLE_WITH_XPU) && !defined(PADDLE_WITH_XPU_KP)
PD_REGISTER_KERNEL(full_sr,
                   XPU,
                   ALL_LAYOUT,
                   phi::sr::FullKernel,
                   float,
                   uint8_t,
                   int16_t,
                   int,
                   int64_t,
                   bool,
                   phi::dtype::float16) {}
#endif