chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,247 @@
|
||||
// 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/kernels/legacy/elementwise_kernel.h"
|
||||
#include "paddle/phi/backends/cpu/cpu_context.h"
|
||||
#include "paddle/phi/core/kernel_registry.h"
|
||||
#include "paddle/phi/kernels/cpu/elementwise.h"
|
||||
#include "paddle/phi/kernels/impl/elementwise_kernel_impl.h"
|
||||
|
||||
namespace phi {
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
template <typename T, typename Context>
|
||||
void RemainderKernel(const Context& dev_ctx,
|
||||
const DenseTensor& x,
|
||||
const DenseTensor& y,
|
||||
DenseTensor* out) {
|
||||
int axis = -1;
|
||||
RemainderRawKernel<T>(dev_ctx, x, y, axis, out);
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
template <typename T, typename Context>
|
||||
void TruncDivideKernel(const Context& dev_ctx,
|
||||
const DenseTensor& x,
|
||||
const DenseTensor& y,
|
||||
DenseTensor* out) {
|
||||
int axis = -1;
|
||||
dev_ctx.template Alloc<T>(out);
|
||||
auto x_dims = x.dims();
|
||||
auto y_dims = y.dims();
|
||||
if (x_dims.size() >= y_dims.size()) { // NOLINT
|
||||
funcs::ElementwiseCompute<funcs::TruncDivideFunctor<T>, T>(
|
||||
dev_ctx, x, y, funcs::TruncDivideFunctor<T>(), out, axis);
|
||||
} else {
|
||||
funcs::ElementwiseCompute<funcs::InverseTruncDivideFunctor<T>, T>(
|
||||
dev_ctx, x, y, funcs::InverseTruncDivideFunctor<T>(), out, axis);
|
||||
}
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
template <typename T, typename Context>
|
||||
void HeavisideKernel(const Context& dev_ctx,
|
||||
const DenseTensor& x,
|
||||
const DenseTensor& y,
|
||||
DenseTensor* out) {
|
||||
// allocate memory for out
|
||||
dev_ctx.template Alloc<T>(out);
|
||||
auto x_dims = x.dims();
|
||||
auto y_dims = y.dims();
|
||||
if (x_dims.size() >= y_dims.size()) {
|
||||
funcs::ElementwiseCompute<funcs::ElementwiseHeavisideFunctor<T>, T>(
|
||||
dev_ctx, x, y, funcs::ElementwiseHeavisideFunctor<T>(), out);
|
||||
} else {
|
||||
funcs::ElementwiseCompute<funcs::ElementwiseInverseHeavisideFunctor<T>, T>(
|
||||
dev_ctx, x, y, funcs::ElementwiseInverseHeavisideFunctor<T>(), out);
|
||||
}
|
||||
}
|
||||
|
||||
template <typename T, typename Context>
|
||||
void CopySignKernel(const Context& dev_ctx,
|
||||
const DenseTensor& x,
|
||||
const DenseTensor& y,
|
||||
DenseTensor* out) {
|
||||
if (out->numel() == 0) {
|
||||
dev_ctx.template Alloc<T>(out);
|
||||
return;
|
||||
}
|
||||
dev_ctx.template Alloc<T>(out);
|
||||
auto x_dims = x.dims();
|
||||
auto y_dims = y.dims();
|
||||
if (x_dims.size() >= y_dims.size()) {
|
||||
funcs::ElementwiseCompute<funcs::CopySignFunctor<T>, T>(
|
||||
dev_ctx, x, y, funcs::CopySignFunctor<T>(), out);
|
||||
} else {
|
||||
funcs::ElementwiseCompute<funcs::InverseCopySignFunctor<T>, T>(
|
||||
dev_ctx, x, y, funcs::InverseCopySignFunctor<T>(), out);
|
||||
}
|
||||
}
|
||||
|
||||
template <typename T, typename Context>
|
||||
void NextafterKernel(const Context& dev_ctx,
|
||||
const DenseTensor& x,
|
||||
const DenseTensor& y,
|
||||
DenseTensor* out) {
|
||||
if (x.numel() == 0 || y.numel() == 0) {
|
||||
dev_ctx.template Alloc<T>(out);
|
||||
return;
|
||||
}
|
||||
dev_ctx.template Alloc<T>(out);
|
||||
auto x_dims = x.dims();
|
||||
auto y_dims = y.dims();
|
||||
if (x_dims.size() >= y_dims.size()) {
|
||||
funcs::ElementwiseCompute<funcs::NextafterFunctor<T>, T>(
|
||||
dev_ctx, x, y, funcs ::NextafterFunctor<T>(), out);
|
||||
} else {
|
||||
funcs::ElementwiseCompute<funcs::InverseNextafterFunctor<T>, T>(
|
||||
dev_ctx, x, y, funcs::InverseNextafterFunctor<T>(), out);
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace phi
|
||||
|
||||
// NOTE(chenweihang): using bfloat16 will cause redefine with xpu bfloat16
|
||||
// using bfloat16 = ::phi::bfloat16;
|
||||
|
||||
PD_REGISTER_KERNEL(
|
||||
fmax, CPU, ALL_LAYOUT, phi::FMaxKernel, float, double, int, int64_t) {}
|
||||
|
||||
PD_REGISTER_KERNEL(
|
||||
fmin, CPU, ALL_LAYOUT, phi::FMinKernel, float, double, int, int64_t) {}
|
||||
|
||||
PD_REGISTER_KERNEL(maximum,
|
||||
CPU,
|
||||
ALL_LAYOUT,
|
||||
phi::MaximumKernel,
|
||||
float,
|
||||
double,
|
||||
int,
|
||||
int64_t,
|
||||
phi::bfloat16) {}
|
||||
PD_REGISTER_KERNEL(minimum,
|
||||
CPU,
|
||||
ALL_LAYOUT,
|
||||
phi::MinimumKernel,
|
||||
float,
|
||||
double,
|
||||
int,
|
||||
int64_t,
|
||||
phi::bfloat16) {}
|
||||
PD_REGISTER_KERNEL(remainder,
|
||||
CPU,
|
||||
ALL_LAYOUT,
|
||||
phi::RemainderKernel,
|
||||
float,
|
||||
double,
|
||||
int,
|
||||
phi::complex64,
|
||||
phi::complex128,
|
||||
int64_t) {}
|
||||
PD_REGISTER_KERNEL(floor_divide,
|
||||
CPU,
|
||||
ALL_LAYOUT,
|
||||
phi::FloorDivideKernel,
|
||||
uint8_t,
|
||||
int8_t,
|
||||
int16_t,
|
||||
int32_t,
|
||||
int64_t,
|
||||
float,
|
||||
double,
|
||||
phi::float16,
|
||||
phi::bfloat16) {}
|
||||
PD_REGISTER_KERNEL(trunc_divide,
|
||||
CPU,
|
||||
ALL_LAYOUT,
|
||||
phi::TruncDivideKernel,
|
||||
uint8_t,
|
||||
int8_t,
|
||||
int16_t,
|
||||
int32_t,
|
||||
int64_t,
|
||||
float,
|
||||
double,
|
||||
phi::dtype::float16,
|
||||
phi::dtype::bfloat16) {}
|
||||
PD_REGISTER_KERNEL(elementwise_pow,
|
||||
CPU,
|
||||
ALL_LAYOUT,
|
||||
phi::ElementwisePowKernel,
|
||||
float,
|
||||
double,
|
||||
int,
|
||||
int64_t,
|
||||
phi::bfloat16,
|
||||
phi::complex64,
|
||||
phi::complex128) {}
|
||||
PD_REGISTER_KERNEL(heaviside,
|
||||
CPU,
|
||||
ALL_LAYOUT,
|
||||
phi::HeavisideKernel,
|
||||
float,
|
||||
double,
|
||||
int,
|
||||
int64_t) {}
|
||||
|
||||
PD_REGISTER_KERNEL(copysign,
|
||||
CPU,
|
||||
ALL_LAYOUT,
|
||||
phi::CopySignKernel,
|
||||
bool,
|
||||
uint8_t,
|
||||
int8_t,
|
||||
int16_t,
|
||||
int,
|
||||
int64_t,
|
||||
float,
|
||||
double,
|
||||
phi::float16,
|
||||
phi::bfloat16) {}
|
||||
|
||||
PD_REGISTER_KERNEL(
|
||||
nextafter, CPU, ALL_LAYOUT, phi::NextafterKernel, float, double) {}
|
||||
Reference in New Issue
Block a user