// 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/erfinv_kernel.h" #include #include "paddle/phi/backends/gpu/gpu_context.h" #include "paddle/phi/core/kernel_registry.h" #include "paddle/phi/kernels/funcs/elementwise_base.h" namespace phi { template struct ErfinvFunctor { HOSTDEVICE inline T operator()(const T x) const { // erfinv is only defined on [-1, 1]; align with PyTorch/scipy by // returning NaN for |x| > 1 (CUDA erfinv returns +/-inf otherwise). if (x > static_cast(1) || x < static_cast(-1)) { return std::numeric_limits::quiet_NaN(); } return erfinv(x); } }; template <> struct ErfinvFunctor { HOSTDEVICE inline float16 operator()(const float16 x) const { auto x_ = static_cast(x); if (x_ > 1.0f || x_ < -1.0f) { return std::numeric_limits::quiet_NaN(); } return static_cast(erfinv(x_)); } }; template <> struct ErfinvFunctor { HOSTDEVICE inline bfloat16 operator()(const bfloat16 x) const { auto x_ = static_cast(x); if (x_ > 1.0f || x_ < -1.0f) { return std::numeric_limits::quiet_NaN(); } return static_cast(erfinv(x_)); } }; template void ErfinvKernel(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) { dev_ctx.template Alloc(out); if (out && out->numel() == 0) { return; } std::vector ins = {&x}; std::vector outs = {out}; funcs::ElementwiseKernel(dev_ctx, ins, &outs, ErfinvFunctor()); } } // namespace phi PD_REGISTER_KERNEL(erfinv, GPU, ALL_LAYOUT, phi::ErfinvKernel, float, double, phi::float16, phi::bfloat16) {}