/* 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/activation_kernel.h" #include "paddle/phi/backends/xpu/enforce_xpu.h" #include "paddle/phi/common/memory_utils.h" #include "paddle/phi/core/kernel_registry.h" #include "paddle/phi/kernels/funcs/activation_functor.h" namespace phi { template void ActivationXPUImpl(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out, const Functor& functor) { PADDLE_ENFORCE_NOT_NULL(out, errors::NotFound("Output Out should not be nullptr")); dev_ctx.template Alloc(out); if (out->numel() == 0) { return; } functor(dev_ctx, x, out); } #define DEFINE_XPU_ACTIVATION_KERNEL(name, functor_class) \ template \ void name##Kernel( \ const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) { \ functor_class functor; \ ActivationXPUImpl>(dev_ctx, x, out, functor); \ } #define DEFINE_XPU_ACTIVATION_KERNEL_WITH_ONE_ATTRS(name, functor_class, attr) \ template \ void name##Kernel(const Context& dev_ctx, \ const DenseTensor& x, \ float attr, \ DenseTensor* out) { \ functor_class functor; \ auto attrs = functor.GetAttrs(); \ *(attrs[0].second) = attr; \ ActivationXPUImpl>(dev_ctx, x, out, functor); \ } #define DEFINE_XPU_ACTIVATION_KERNEL_WITH_ONE_DOUBLE_ATTRS( \ name, functor_class, attr) \ template \ void name##Kernel(const Context& dev_ctx, \ const DenseTensor& x, \ double attr, \ DenseTensor* out) { \ functor_class functor; \ auto attrs = functor.GetAttrs(); \ *(attrs[0].second) = static_cast(attr); \ ActivationXPUImpl>(dev_ctx, x, out, functor); \ } #define DEFINE_XPU_ACTIVATION_KERNEL_WITH_TWO_ATTRS( \ name, functor_class, attr1, attr2) \ template \ void name##Kernel(const Context& dev_ctx, \ const DenseTensor& x, \ float attr1, \ float attr2, \ DenseTensor* out) { \ functor_class functor; \ auto attrs = functor.GetAttrs(); \ *(attrs[0].second) = attr1; \ *(attrs[1].second) = attr2; \ ActivationXPUImpl>(dev_ctx, x, out, functor); \ } template int xpu_activation_func( const Context& dev_ctx, const DenseTensor& x, DenseTensor* out, std::function func) { int r = func(dev_ctx.x_context(), reinterpret_cast(x.data()), reinterpret_cast(out->data()), x.numel()); return r; } template int xpu_activation_func_with_max_x_y( const Context& dev_ctx, const DenseTensor& x, DenseTensor* out, std::function func) { // does not support "const float* max_x, float* max_y" now int r = func(dev_ctx.x_context(), reinterpret_cast(x.data()), reinterpret_cast(out->data()), x.numel(), nullptr, nullptr); return r; } template int xpu_activation_1attr_func(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out, float attr, std::function func) { // does not support "const float* max_x, float* max_y" now int r = func(dev_ctx.x_context(), reinterpret_cast(x.data()), reinterpret_cast(out->data()), x.numel(), attr, nullptr, nullptr); return r; } template int xpu_activation_2attr_func(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out, float attr1, float attr2, std::function func) { // does not support "const float* max_x, float* max_y" now int r = func(dev_ctx.x_context(), reinterpret_cast(x.data()), reinterpret_cast(out->data()), x.numel(), attr1, attr2, nullptr, nullptr); return r; } template struct XPUExpFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func( dev_ctx, x, out, xpu::exp); PADDLE_ENFORCE_XDNN_SUCCESS(r, "exp"); } }; template struct XPULogFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func( dev_ctx, x, out, xpu::log); PADDLE_ENFORCE_XDNN_SUCCESS(r, "log"); } }; template struct XPULeakyReluFunctor : public funcs::BaseActivationFunctor { float alpha; typename funcs::BaseActivationFunctor::AttrPair GetAttrs() { return {{"alpha", &alpha}}; } template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { using XPUType = typename XPUTypeTrait::Type; int r = xpu_activation_1attr_func( dev_ctx, x, out, alpha, xpu::leaky_relu); PADDLE_ENFORCE_XDNN_SUCCESS(r, "leaky_relu"); } }; template struct XPURoundFunctor : public funcs::BaseActivationFunctor { int decimals; std::vector> GetAttrs() { return {{"decimals", &decimals}}; } template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { using XPUType = typename XPUTypeTrait::Type; int r = xpu::paddle_round( dev_ctx.x_context(), reinterpret_cast(x.data()), reinterpret_cast(out->data()), x.numel(), decimals); PADDLE_ENFORCE_XDNN_SUCCESS(r, "paddle_round"); } }; template void PowKernel(const Context& dev_ctx, const DenseTensor& x, const Scalar& factor, DenseTensor* out) { using XPUType = typename XPUTypeTrait::Type; dev_ctx.template Alloc(out); const XPUType* x_data = reinterpret_cast(x.data()); XPUType* y_data = reinterpret_cast(out->data()); XPUType pow_factor = static_cast(factor.to()); if (x.numel() == 0) return; auto xpu_context = dev_ctx.x_context(); int r = xpu::pow_tensor_scalar( xpu_context, x_data, pow_factor, y_data, x.numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "pow_tensor_scalar"); } template struct XPUHardSigmoidFunctor : public funcs::BaseActivationFunctor { float slope; float offset; typename funcs::BaseActivationFunctor::AttrPair GetAttrs() { return {{"slope", &slope}, {"offset", &offset}}; } template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { using XPUType = typename XPUTypeTrait::Type; int r = xpu_activation_1attr_func( dev_ctx, x, out, slope, xpu::hard_sigmoid); PADDLE_ENFORCE_XDNN_SUCCESS(r, "hardsigmoid"); } }; template struct XPUHardSwishFunctor : public funcs::BaseActivationFunctor { float threshold; float scale; float offset; typename funcs::BaseActivationFunctor::AttrPair GetAttrs() { return {{"threshold", &threshold}, {"scale", &scale}, {"offset", &offset}}; } template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { using XPUType = typename XPUTypeTrait::Type; PADDLE_ENFORCE_EQ( threshold, 6.0f, errors::External("Not support threshold [%f] in XPU", threshold)); PADDLE_ENFORCE_EQ( scale, 6.0f, errors::External("Not support scale [%f] in XPU", scale)); PADDLE_ENFORCE_EQ( offset, 3.0f, errors::External("Not support offset [%f] in XPU", offset)); int r = xpu_activation_func_with_max_x_y( dev_ctx, x, out, xpu::hard_swish); PADDLE_ENFORCE_XDNN_SUCCESS(r, "hard_swish"); } }; template struct XPUReciprocalFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func( dev_ctx, x, out, xpu::reciprocal); PADDLE_ENFORCE_XDNN_SUCCESS(r, "reciprocal"); } }; template struct XPUReluFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { const XPUType* x_data = reinterpret_cast(x.data()); XPUType* y_data = reinterpret_cast(out->data()); auto xpu_context = dev_ctx.x_context(); int r = xpu::relu(xpu_context, x_data, y_data, x.numel(), nullptr, nullptr); PADDLE_ENFORCE_XDNN_SUCCESS(r, "relu"); } }; template struct XPURelu6Functor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; float threshold; typename funcs::BaseActivationFunctor::AttrPair GetAttrs() { return {{"threshold", &threshold}}; } template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func_with_max_x_y( dev_ctx, x, out, xpu::relu6); PADDLE_ENFORCE_XDNN_SUCCESS(r, "relu6"); } }; template struct XPUSiluFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { dev_ctx.template Alloc(out); const XPUType* x_data = reinterpret_cast(x.data()); XPUType* y_data = reinterpret_cast(out->data()); auto xpu_context = dev_ctx.x_context(); if (std::getenv("XPU_PADDLE_ACT_LUT") != nullptr) { if (!std::is_same::value) { // use fast_swish if NOT bf16 int r = xpu::fast_silu( xpu_context, x_data, y_data, x.numel(), nullptr, nullptr); PADDLE_ENFORCE_XDNN_SUCCESS(r, "fast_silu"); } else { // use plain swish int r = xpu::silu(xpu_context, x_data, y_data, x.numel(), nullptr, nullptr); PADDLE_ENFORCE_XDNN_SUCCESS(r, "silu"); } } else { // use plain swish int r = xpu::silu(xpu_context, x_data, y_data, x.numel(), nullptr, nullptr); PADDLE_ENFORCE_XDNN_SUCCESS(r, "silu"); } } }; template struct XPUSigmoidFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func_with_max_x_y( dev_ctx, x, out, xpu::sigmoid); PADDLE_ENFORCE_XDNN_SUCCESS(r, "sigmoid"); } }; template struct XPUSquareFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func( dev_ctx, x, out, xpu::square); PADDLE_ENFORCE_XDNN_SUCCESS(r, "square"); } }; template struct XPUSqrtFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func( dev_ctx, x, out, xpu::sqrt); PADDLE_ENFORCE_XDNN_SUCCESS(r, "sqrt"); } }; template struct XPUMishFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; float threshold; typename funcs::BaseActivationFunctor::AttrPair GetAttrs() { return {{"threshold", &threshold}}; } template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_1attr_func( dev_ctx, x, out, threshold, xpu::mish); PADDLE_ENFORCE_XDNN_SUCCESS(r, "mish"); } }; template void SwishKernel(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) { using XPUType = typename XPUTypeTrait::Type; dev_ctx.template Alloc(out); if (out->numel() == 0) { return; } int r = xpu::swish(dev_ctx.x_context(), reinterpret_cast(x.data()), reinterpret_cast(out->data()), x.numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "swish"); } template void EluKernel(const Context& dev_ctx, const DenseTensor& x, float alpha, DenseTensor* out) { using XPUType = typename XPUTypeTrait::Type; dev_ctx.template Alloc(out); if (out->numel() == 0) { return; } // template int elu(Context* xpu_ctx, const T* x, T* y, int64_t // len, float alpha = 1.0f, const float* max_x = nullptr, float* max_y = // nullptr) int r = xpu::elu(dev_ctx.x_context(), reinterpret_cast(x.data()), reinterpret_cast(out->data()), x.numel(), alpha); PADDLE_ENFORCE_XDNN_SUCCESS(r, "elu"); } template void Relu6Kernel(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) { XPURelu6Functor functor; auto attrs = functor.GetAttrs(); *(attrs[0].second) = 6.0; ActivationXPUImpl>(dev_ctx, x, out, functor); } template struct XPUSoftplusFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; float beta; float threshold; typename funcs::BaseActivationFunctor::AttrPair GetAttrs() { return {{"beta", &beta}, {"threshold", &threshold}}; } template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_2attr_func( dev_ctx, x, out, beta, threshold, xpu::softplus); PADDLE_ENFORCE_XDNN_SUCCESS(r, "softplus"); } }; template struct XPUTanhFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func_with_max_x_y( dev_ctx, x, out, xpu::tanh); PADDLE_ENFORCE_XDNN_SUCCESS(r, "tanh"); } }; template struct XPUFloorFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func( dev_ctx, x, out, xpu::floor); PADDLE_ENFORCE_XDNN_SUCCESS(r, "floor"); } }; template struct XPUCeilFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func( dev_ctx, x, out, xpu::ceil); PADDLE_ENFORCE_XDNN_SUCCESS(r, "ceil"); } }; template struct XPUSinFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func( dev_ctx, x, out, xpu::sin); PADDLE_ENFORCE_XDNN_SUCCESS(r, "sin"); } }; template struct XPUCosFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int r = xpu_activation_func( dev_ctx, x, out, xpu::cos); PADDLE_ENFORCE_XDNN_SUCCESS(r, "cos"); } }; template struct XPURsqrtFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int ret = xpu_activation_func( dev_ctx, x, out, xpu::rsqrt); PADDLE_ENFORCE_XDNN_SUCCESS(ret, "rsqrt"); } }; template struct XPUTanFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int ret = xpu_activation_func( dev_ctx, x, out, xpu::tan); PADDLE_ENFORCE_XDNN_SUCCESS(ret, "tan"); } }; template struct XPUAcosFunctor : public funcs::BaseActivationFunctor { using XPUType = typename XPUTypeTrait::Type; template void operator()(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) const { int ret = xpu_activation_func( dev_ctx, x, out, xpu::arccos); PADDLE_ENFORCE_XDNN_SUCCESS(ret, "arccos"); } }; DEFINE_XPU_ACTIVATION_KERNEL(Exp, XPUExpFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Floor, XPUFloorFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Ceil, XPUCeilFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Log, XPULogFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Reciprocal, XPUReciprocalFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Relu, XPUReluFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Sigmoid, XPUSigmoidFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Square, XPUSquareFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Sqrt, XPUSqrtFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Tanh, XPUTanhFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Silu, XPUSiluFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Sin, XPUSinFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Cos, XPUCosFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Rsqrt, XPURsqrtFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Tan, XPUTanFunctor) DEFINE_XPU_ACTIVATION_KERNEL(Acos, XPUAcosFunctor) DEFINE_XPU_ACTIVATION_KERNEL_WITH_ONE_ATTRS(Mish, XPUMishFunctor, threshold) DEFINE_XPU_ACTIVATION_KERNEL_WITH_ONE_DOUBLE_ATTRS(LeakyRelu, XPULeakyReluFunctor, alpha) DEFINE_XPU_ACTIVATION_KERNEL_WITH_TWO_ATTRS(HardSigmoid, XPUHardSigmoidFunctor, slope, offset) template void SoftplusKernel(const Context& dev_ctx, const DenseTensor& x, double beta, double threshold, DenseTensor* out) { XPUSoftplusFunctor functor; auto attrs = functor.GetAttrs(); *(attrs[0].second) = static_cast(beta); *(attrs[1].second) = static_cast(threshold); ActivationXPUImpl>( dev_ctx, x, out, functor); } template void HardSwishKernel(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) { XPUHardSwishFunctor functor; float threshold = 6; float scale = 6; float offset = 3; auto attrs = functor.GetAttrs(); *(attrs[0].second) = threshold; *(attrs[1].second) = scale; *(attrs[2].second) = offset; ActivationXPUImpl>( dev_ctx, x, out, functor); } template void RoundKernel(const Context& dev_ctx, const DenseTensor& x, const int decimals, DenseTensor* out) { XPURoundFunctor functor; auto attrs = functor.GetAttrs(); *(attrs[0].second) = decimals; ActivationXPUImpl>(dev_ctx, x, out, functor); } } // namespace phi PD_REGISTER_KERNEL(relu, XPU, ALL_LAYOUT, phi::ReluKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(silu, XPU, ALL_LAYOUT, phi::SiluKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(elu, XPU, ALL_LAYOUT, phi::EluKernel, float, phi::float16) {} PD_REGISTER_KERNEL(sigmoid, XPU, ALL_LAYOUT, phi::SigmoidKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(swish, XPU, ALL_LAYOUT, phi::SwishKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL( hardsigmoid, XPU, ALL_LAYOUT, phi::HardSigmoidKernel, float, phi::float16) { } PD_REGISTER_KERNEL( hardswish, XPU, ALL_LAYOUT, phi::HardSwishKernel, float, phi::float16) {} PD_REGISTER_KERNEL( leaky_relu, XPU, ALL_LAYOUT, phi::LeakyReluKernel, float, phi::float16) {} PD_REGISTER_KERNEL(sqrt, XPU, ALL_LAYOUT, phi::SqrtKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(tanh, XPU, ALL_LAYOUT, phi::TanhKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(square, XPU, ALL_LAYOUT, phi::SquareKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL( log, XPU, ALL_LAYOUT, phi::LogKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL( relu6, XPU, ALL_LAYOUT, phi::Relu6Kernel, float, phi::float16) {} PD_REGISTER_KERNEL( sin, XPU, ALL_LAYOUT, phi::SinKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL( cos, XPU, ALL_LAYOUT, phi::CosKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL( pow, XPU, ALL_LAYOUT, phi::PowKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(rsqrt, XPU, ALL_LAYOUT, phi::RsqrtKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL( exp, XPU, ALL_LAYOUT, phi::ExpKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(round, XPU, ALL_LAYOUT, phi::RoundKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(tan, XPU, ALL_LAYOUT, phi::TanKernel, float, phi::float16) {} PD_REGISTER_KERNEL(acos, XPU, ALL_LAYOUT, phi::AcosKernel, float, phi::float16, phi::bfloat16) {} #define PD_REGISTER_ACTIVATION_KERNEL(name, func) \ PD_REGISTER_KERNEL(name, XPU, ALL_LAYOUT, phi::func, float) {} PD_REGISTER_ACTIVATION_KERNEL(mish, MishKernel) PD_REGISTER_ACTIVATION_KERNEL(reciprocal, ReciprocalKernel) PD_REGISTER_ACTIVATION_KERNEL(softplus, SoftplusKernel) PD_REGISTER_KERNEL(floor, XPU, ALL_LAYOUT, phi::FloorKernel, float, int, int64_t, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(ceil, XPU, ALL_LAYOUT, phi::CeilKernel, float, phi::float16, phi::bfloat16) {}