elementwise_kernel.cu 3.2 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 27 28 29 30
// Create the definition of Maximum
DEFINE_CUDA_ELEMENTWISE_OP(Maximum)
// Create the definition of Minimum
DEFINE_CUDA_ELEMENTWISE_OP(Minimum)
// Create the definition of Modulo
DEFINE_CUDA_ELEMENTWISE_OP(Modulo)
31 32 33 34
// Create the definition of FloorDivide
DEFINE_CUDA_ELEMENTWISE_OP(FloorDivide)
// Create the definition of Pow
DEFINE_CUDA_ELEMENTWISE_OP(ElementwisePow)
Y
YuanRisheng 已提交
35 36 37

}  // namespace phi

38 39 40 41 42 43 44 45 46
#ifdef PADDLE_WITH_XPU_KP
PD_REGISTER_KERNEL(maximum_raw, KPS, ALL_LAYOUT, phi::MaximumRawKernel, float) {
}
PD_REGISTER_KERNEL(minimum_raw, KPS, ALL_LAYOUT, phi::MinimumRawKernel, float) {
}
PD_REGISTER_KERNEL(
    floor_divide_raw, KPS, ALL_LAYOUT, phi::FloorDivideRawKernel, int) {}

#else
Y
YuanRisheng 已提交
47 48 49 50 51
using float16 = phi::dtype::float16;
using bfloat16 = phi::dtype::bfloat16;
using complex64 = ::phi::dtype::complex<float>;
using complex128 = ::phi::dtype::complex<double>;

Y
YuanRisheng 已提交
52
PD_REGISTER_KERNEL(
53
    fmax, KPS, ALL_LAYOUT, phi::FMaxKernel, float, double, int, int64_t) {}
54

Y
YuanRisheng 已提交
55
PD_REGISTER_KERNEL(
56
    fmin, KPS, ALL_LAYOUT, phi::FMinKernel, float, double, int, int64_t) {}
Y
YuanRisheng 已提交
57

58
PD_REGISTER_KERNEL(maximum_raw,
59
                   KPS,
60 61 62 63 64 65 66 67 68
                   ALL_LAYOUT,
                   phi::MaximumRawKernel,
                   float,
                   double,
                   int,
                   int64_t,
                   float16,
                   bfloat16) {}
PD_REGISTER_KERNEL(minimum_raw,
69
                   KPS,
70 71 72 73 74 75 76 77 78
                   ALL_LAYOUT,
                   phi::MinimumRawKernel,
                   float,
                   double,
                   int,
                   int64_t,
                   float16,
                   bfloat16) {}
PD_REGISTER_KERNEL(modulo_raw,
79
                   KPS,
80 81 82 83 84 85
                   ALL_LAYOUT,
                   phi::ModuloRawKernel,
                   float,
                   double,
                   int,
                   int64_t) {}
86
PD_REGISTER_KERNEL(floor_divide_raw,
87
                   KPS,
88 89 90 91 92
                   ALL_LAYOUT,
                   phi::FloorDivideRawKernel,
                   int,
                   int64_t) {}
PD_REGISTER_KERNEL(elementwise_pow_raw,
93
                   KPS,
94 95 96 97 98 99
                   ALL_LAYOUT,
                   phi::ElementwisePowRawKernel,
                   float,
                   double,
                   int,
                   int64_t) {}
100
#endif