elementwise_kernel.cu 5.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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.

#include "paddle/phi/backends/gpu/gpu_context.h"
16
#ifndef PADDLE_WITH_XPU_KP
Y
YuanRisheng 已提交
17 18
#include "paddle/phi/common/complex.h"
#include "paddle/phi/common/float16.h"
19
#endif
20 21 22
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/impl/elementwise_kernel_impl.h"

Y
YuanRisheng 已提交
23 24
namespace phi {

25 26
// Create the definition of Maximum
DEFINE_CUDA_ELEMENTWISE_OP(Maximum)
27 28 29 30 31 32 33 34
template <typename T, typename Context>
void MaximumKernel(const Context& dev_ctx,
                   const DenseTensor& x,
                   const DenseTensor& y,
                   DenseTensor* out) {
  int axis = -1;
  MaximumRawKernel<T>(dev_ctx, x, y, axis, out);
}
35

36 37
// Create the definition of Minimum
DEFINE_CUDA_ELEMENTWISE_OP(Minimum)
38 39 40 41 42 43 44 45
template <typename T, typename Context>
void MinimumKernel(const Context& dev_ctx,
                   const DenseTensor& x,
                   const DenseTensor& y,
                   DenseTensor* out) {
  int axis = -1;
  MinimumRawKernel<T>(dev_ctx, x, y, axis, out);
}
C
Chen Weihang 已提交
46 47
// Create the definition of Remainder
DEFINE_CUDA_ELEMENTWISE_OP(Remainder)
48 49
// Create the definition of FloorDivide
DEFINE_CUDA_ELEMENTWISE_OP(FloorDivide)
50 51 52 53 54 55 56 57
template <typename T, typename Context>
void FloorDivideKernel(const Context& dev_ctx,
                       const DenseTensor& x,
                       const DenseTensor& y,
                       DenseTensor* out) {
  int axis = -1;
  FloorDivideRawKernel<T>(dev_ctx, x, y, axis, out);
}
58 59
// Create the definition of Heaviside
DEFINE_CUDA_ELEMENTWISE_OP(ElementwiseHeaviside)
60 61
// Create the definition of Pow
DEFINE_CUDA_ELEMENTWISE_OP(ElementwisePow)
62 63 64 65 66 67 68 69
template <typename T, typename Context>
void ElementwisePowKernel(const Context& dev_ctx,
                          const DenseTensor& x,
                          const DenseTensor& y,
                          DenseTensor* out) {
  int axis = -1;
  ElementwisePowRawKernel<T>(dev_ctx, x, y, axis, out);
}
Y
YuanRisheng 已提交
70 71 72

}  // namespace phi

73
#ifdef PADDLE_WITH_XPU_KP
74
PD_REGISTER_KERNEL(maximum, KPS, ALL_LAYOUT, phi::MaximumKernel, float) {}
75 76
PD_REGISTER_KERNEL(maximum_raw, KPS, ALL_LAYOUT, phi::MaximumRawKernel, float) {
}
77
PD_REGISTER_KERNEL(minimum, KPS, ALL_LAYOUT, phi::MinimumKernel, float) {}
78 79
PD_REGISTER_KERNEL(minimum_raw, KPS, ALL_LAYOUT, phi::MinimumRawKernel, float) {
}
80 81
PD_REGISTER_KERNEL(floor_divide, KPS, ALL_LAYOUT, phi::FloorDivideKernel, int) {
}
82 83
PD_REGISTER_KERNEL(
    floor_divide_raw, KPS, ALL_LAYOUT, phi::FloorDivideRawKernel, int) {}
84 85 86 87 88
PD_REGISTER_KERNEL(
    elementwise_pow, KPS, ALL_LAYOUT, phi::ElementwisePowKernel, float) {}
PD_REGISTER_KERNEL(
    elementwise_pow_raw, KPS, ALL_LAYOUT, phi::ElementwisePowRawKernel, float) {
}
89 90

#else
Y
YuanRisheng 已提交
91 92 93 94 95
using float16 = phi::dtype::float16;
using bfloat16 = phi::dtype::bfloat16;
using complex64 = ::phi::dtype::complex<float>;
using complex128 = ::phi::dtype::complex<double>;

96 97 98 99 100 101 102 103 104
PD_REGISTER_KERNEL(fmax,
                   KPS,
                   ALL_LAYOUT,
                   phi::FMaxKernel,
                   float,
                   double,
                   int,
                   float16,
                   int64_t) {}
105

106 107 108 109 110 111 112 113 114
PD_REGISTER_KERNEL(fmin,
                   KPS,
                   ALL_LAYOUT,
                   phi::FMinKernel,
                   float,
                   double,
                   int,
                   float16,
                   int64_t) {}
Y
YuanRisheng 已提交
115

116
PD_REGISTER_KERNEL(maximum_raw,
117
                   KPS,
118 119 120 121 122 123 124 125 126
                   ALL_LAYOUT,
                   phi::MaximumRawKernel,
                   float,
                   double,
                   int,
                   int64_t,
                   float16,
                   bfloat16) {}
PD_REGISTER_KERNEL(minimum_raw,
127
                   KPS,
128 129 130 131 132 133 134 135
                   ALL_LAYOUT,
                   phi::MinimumRawKernel,
                   float,
                   double,
                   int,
                   int64_t,
                   float16,
                   bfloat16) {}
C
Chen Weihang 已提交
136
PD_REGISTER_KERNEL(remainder_raw,
137
                   KPS,
138
                   ALL_LAYOUT,
C
Chen Weihang 已提交
139
                   phi::RemainderRawKernel,
140 141 142
                   float,
                   double,
                   int,
143
                   float16,
144
                   int64_t) {}
145
PD_REGISTER_KERNEL(floor_divide_raw,
146
                   KPS,
147 148 149 150
                   ALL_LAYOUT,
                   phi::FloorDivideRawKernel,
                   int,
                   int64_t) {}
151 152 153 154 155 156 157
PD_REGISTER_KERNEL(elementwise_heaviside_raw,
                   KPS,
                   ALL_LAYOUT,
                   phi::ElementwiseHeavisideRawKernel,
                   float,
                   double,
                   int,
158
                   float16,
159
                   int64_t) {}
160
PD_REGISTER_KERNEL(elementwise_pow_raw,
161
                   KPS,
162 163 164 165 166
                   ALL_LAYOUT,
                   phi::ElementwisePowRawKernel,
                   float,
                   double,
                   int,
167
                   float16,
168
                   int64_t) {}
169
#endif