elementwise_kernel.cu 6.0 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
// Create the definition of Heaviside
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
template <typename T, typename Context>
void HeavisideKernel(const Context& dev_ctx,
                     const DenseTensor& x,
                     const DenseTensor& y,
                     DenseTensor* out) {
  std::vector<const DenseTensor*> inputs;
  inputs.reserve(2);
  std::vector<DenseTensor*> outputs;
  outputs.reserve(1);
  inputs.emplace_back(&x);
  inputs.emplace_back(&y);
  outputs.emplace_back(out);
  dev_ctx.template Alloc<T>(out);
  funcs::BroadcastKernel<ElementwiseType::kBinary, T, T>(
      dev_ctx, inputs, &outputs, -1, funcs::ElementwiseHeavisideFunctor<T>());
}

76 77
// Create the definition of Pow
DEFINE_CUDA_ELEMENTWISE_OP(ElementwisePow)
78 79 80 81 82 83 84 85
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 已提交
86 87 88

}  // namespace phi

89
#ifdef PADDLE_WITH_XPU_KP
90
PD_REGISTER_KERNEL(maximum, KPS, ALL_LAYOUT, phi::MaximumKernel, float) {}
91 92
PD_REGISTER_KERNEL(maximum_raw, KPS, ALL_LAYOUT, phi::MaximumRawKernel, float) {
}
93
PD_REGISTER_KERNEL(minimum, KPS, ALL_LAYOUT, phi::MinimumKernel, float) {}
94 95
PD_REGISTER_KERNEL(minimum_raw, KPS, ALL_LAYOUT, phi::MinimumRawKernel, float) {
}
96 97
PD_REGISTER_KERNEL(floor_divide, KPS, ALL_LAYOUT, phi::FloorDivideKernel, int) {
}
98 99
PD_REGISTER_KERNEL(
    floor_divide_raw, KPS, ALL_LAYOUT, phi::FloorDivideRawKernel, int) {}
100 101 102 103 104
PD_REGISTER_KERNEL(
    elementwise_pow, KPS, ALL_LAYOUT, phi::ElementwisePowKernel, float) {}
PD_REGISTER_KERNEL(
    elementwise_pow_raw, KPS, ALL_LAYOUT, phi::ElementwisePowRawKernel, float) {
}
105 106

#else
Y
YuanRisheng 已提交
107 108 109 110 111
using float16 = phi::dtype::float16;
using bfloat16 = phi::dtype::bfloat16;
using complex64 = ::phi::dtype::complex<float>;
using complex128 = ::phi::dtype::complex<double>;

Z
zhangyuqin1998 已提交
112
PD_REGISTER_KERNEL(fmax,
113 114
                   KPS,
                   ALL_LAYOUT,
Z
zhangyuqin1998 已提交
115
                   phi::FMaxKernel,
116 117 118 119 120
                   float,
                   double,
                   int,
                   float16,
                   int64_t) {}
121

Z
zyfncg 已提交
122
PD_REGISTER_KERNEL(fmin,
123 124
                   KPS,
                   ALL_LAYOUT,
Z
zyfncg 已提交
125
                   phi::FMinKernel,
126 127 128 129 130
                   float,
                   double,
                   int,
                   float16,
                   int64_t) {}
Y
YuanRisheng 已提交
131

132
PD_REGISTER_KERNEL(maximum_raw,
133
                   KPS,
134 135 136 137 138 139 140 141 142
                   ALL_LAYOUT,
                   phi::MaximumRawKernel,
                   float,
                   double,
                   int,
                   int64_t,
                   float16,
                   bfloat16) {}
PD_REGISTER_KERNEL(minimum_raw,
143
                   KPS,
144 145 146 147 148 149 150 151
                   ALL_LAYOUT,
                   phi::MinimumRawKernel,
                   float,
                   double,
                   int,
                   int64_t,
                   float16,
                   bfloat16) {}
C
Chen Weihang 已提交
152
PD_REGISTER_KERNEL(remainder_raw,
153
                   KPS,
154
                   ALL_LAYOUT,
C
Chen Weihang 已提交
155
                   phi::RemainderRawKernel,
156 157 158
                   float,
                   double,
                   int,
159
                   float16,
160
                   int64_t) {}
161
PD_REGISTER_KERNEL(floor_divide_raw,
162
                   KPS,
163 164 165 166
                   ALL_LAYOUT,
                   phi::FloorDivideRawKernel,
                   int,
                   int64_t) {}
167
PD_REGISTER_KERNEL(heaviside,
168 169
                   KPS,
                   ALL_LAYOUT,
170
                   phi::HeavisideKernel,
171 172 173
                   float,
                   double,
                   int,
174
                   float16,
175
                   int64_t) {}
176
PD_REGISTER_KERNEL(elementwise_pow_raw,
177
                   KPS,
178 179 180 181 182
                   ALL_LAYOUT,
                   phi::ElementwisePowRawKernel,
                   float,
                   double,
                   int,
183
                   float16,
184
                   bfloat16,
185
                   int64_t) {}
186
#endif