[libclc] 80245f3 - libclc: Update asinh (#188219)

via cfe-commits cfe-commits at lists.llvm.org
Tue Mar 24 04:20:39 PDT 2026


Author: Matt Arsenault
Date: 2026-03-24T12:20:34+01:00
New Revision: 80245f3b1471c264cdac87f1d8ceb7169f5f68d6

URL: https://github.com/llvm/llvm-project/commit/80245f3b1471c264cdac87f1d8ceb7169f5f68d6
DIFF: https://github.com/llvm/llvm-project/commit/80245f3b1471c264cdac87f1d8ceb7169f5f68d6.diff

LOG: libclc: Update asinh (#188219)

This was originally ported from rocm device libs in
2b4ef39b2f46acf29294f1fbb223ea5a243c2567. Merge in more
recent changes.

Added: 
    

Modified: 
    libclc/clc/lib/generic/math/clc_asinh.cl
    libclc/clc/lib/generic/math/clc_asinh.inc

Removed: 
    


################################################################################
diff  --git a/libclc/clc/lib/generic/math/clc_asinh.cl b/libclc/clc/lib/generic/math/clc_asinh.cl
index 5500f4748b14c..3a078797f91ee 100644
--- a/libclc/clc/lib/generic/math/clc_asinh.cl
+++ b/libclc/clc/lib/generic/math/clc_asinh.cl
@@ -8,15 +8,14 @@
 
 #include "clc/clc_convert.h"
 #include "clc/float/definitions.h"
-#include "clc/internal/clc.h"
-#include "clc/math/clc_ep_log.h"
+#include "clc/math/clc_asinh.h"
+#include "clc/math/clc_copysign.h"
+#include "clc/math/clc_ep.h"
 #include "clc/math/clc_fabs.h"
-#include "clc/math/clc_fma.h"
-#include "clc/math/clc_log.h"
+#include "clc/math/clc_log2_fast.h"
 #include "clc/math/clc_mad.h"
-#include "clc/math/clc_sqrt.h"
-#include "clc/math/math.h"
-#include "clc/relational/clc_isinf.h"
+#include "clc/math/clc_sqrt_fast.h"
+#include "clc/relational/clc_isfinite.h"
 #include "clc/relational/clc_isnan.h"
 #include "clc/relational/clc_select.h"
 

diff  --git a/libclc/clc/lib/generic/math/clc_asinh.inc b/libclc/clc/lib/generic/math/clc_asinh.inc
index 5ad07dde7e403..ddf3bd689d3a3 100644
--- a/libclc/clc/lib/generic/math/clc_asinh.inc
+++ b/libclc/clc/lib/generic/math/clc_asinh.inc
@@ -1,4 +1,5 @@
 //===----------------------------------------------------------------------===//
+//
 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 // See https://llvm.org/LICENSE.txt for license information.
 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
@@ -7,304 +8,47 @@
 
 #if __CLC_FPSIZE == 32
 
-_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE __clc_asinh(__CLC_GENTYPE x) {
-  __CLC_UINTN ux = __CLC_AS_UINTN(x);
-  __CLC_UINTN ax = ux & EXSIGNBIT_SP32;
-  __CLC_UINTN xsgn = ax ^ ux;
-
-  // |x| <= 2
-  __CLC_GENTYPE t = x * x;
-  __CLC_GENTYPE a =
-      __clc_mad(t,
-                __clc_mad(t,
-                          __clc_mad(t,
-                                    __clc_mad(t, -1.177198915954942694e-4f,
-                                              -4.162727710583425360e-2f),
-                                    -5.063201055468483248e-1f),
-                          -1.480204186473758321f),
-                -1.152965835871758072f);
-  __CLC_GENTYPE b =
-      __clc_mad(t,
-                __clc_mad(t,
-                          __clc_mad(t,
-                                    __clc_mad(t, 6.284381367285534560e-2f,
-                                              1.260024978680227945f),
-                                    6.582362487198468066f),
-                          11.99423176003939087f),
-                6.917795026025976739f);
-
-  __CLC_GENTYPE q = MATH_DIVIDE(a, b);
-  __CLC_GENTYPE z1 = __clc_mad(x * t, q, x);
-
-  // |x| > 2
-
-  // Arguments greater than 1/sqrt(epsilon) in magnitude are
-  // approximated by asinh(x) = ln(2) + ln(abs(x)), with sign of x
-  // Arguments such that 4.0 <= abs(x) <= 1/sqrt(epsilon) are
-  // approximated by asinhf(x) = ln(abs(x) + sqrt(x*x+1))
-  // with the sign of x (see Abramowitz and Stegun 4.6.20)
-
-  __CLC_GENTYPE absx = __clc_fabs(x);
-  __CLC_INTN hi = ax > 0x46000000U;
-  __CLC_GENTYPE y = __clc_sqrt(absx * absx + 1.0f) + absx;
-  y = hi ? absx : y;
-  __CLC_GENTYPE r = __clc_log(y) + (hi ? 0x1.62e430p-1f : 0.0f);
-  __CLC_GENTYPE z2 = __CLC_AS_GENTYPE(xsgn | __CLC_AS_UINTN(r));
+_CLC_DEF _CLC_OVERLOAD _CLC_CONST __CLC_FLOATN __clc_asinh(__CLC_FLOATN x) {
+  __CLC_FLOATN y = __clc_fabs(x);
+  __CLC_INTN b = y >= 0x1.0p+64f;
+  __CLC_FLOATN s = b ? 0x1.0p-64f : 1.0f;
+  __CLC_FLOATN sy = y * s;
+  __CLC_EP_PAIR a =
+      __clc_ep_add(sy, __clc_ep_sqrt(__clc_ep_add(__clc_ep_sqr(sy), s * s)));
+  __CLC_FLOATN z = __clc_ep_ln_hi(a, b ? 64 : 0);
 
-  __CLC_GENTYPE z = ax <= 0x40000000 ? z1 : z2;
-  z = __clc_select(z, x, ax < 0x39800000U || __clc_isinf(x) || __clc_isnan(x));
+  z = y < 0x1.0p-12f ? y : z;
+  z = y == __CLC_GENTYPE_INF ? y : z;
 
-  return z;
+  return __clc_copysign(z, x);
 }
 
 #elif __CLC_FPSIZE == 64
 
-#define NA0 -0.12845379283524906084997e0
-#define NA1 -0.21060688498409799700819e0
-#define NA2 -0.10188951822578188309186e0
-#define NA3 -0.13891765817243625541799e-1
-#define NA4 -0.10324604871728082428024e-3
-
-#define DA0 0.77072275701149440164511e0
-#define DA1 0.16104665505597338100747e1
-#define DA2 0.11296034614816689554875e1
-#define DA3 0.30079351943799465092429e0
-#define DA4 0.235224464765951442265117e-1
-
-#define NB0 -0.12186605129448852495563e0
-#define NB1 -0.19777978436593069928318e0
-#define NB2 -0.94379072395062374824320e-1
-#define NB3 -0.12620141363821680162036e-1
-#define NB4 -0.903396794842691998748349e-4
-
-#define DB0 0.73119630776696495279434e0
-#define DB1 0.15157170446881616648338e1
-#define DB2 0.10524909506981282725413e1
-#define DB3 0.27663713103600182193817e0
-#define DB4 0.21263492900663656707646e-1
-
-#define NC0 -0.81210026327726247622500e-1
-#define NC1 -0.12327355080668808750232e0
-#define NC2 -0.53704925162784720405664e-1
-#define NC3 -0.63106739048128554465450e-2
-#define NC4 -0.35326896180771371053534e-4
-
-#define DC0 0.48726015805581794231182e0
-#define DC1 0.95890837357081041150936e0
-#define DC2 0.62322223426940387752480e0
-#define DC3 0.15028684818508081155141e0
-#define DC4 0.10302171620320141529445e-1
-
-#define ND0 -0.4638179204422665073e-1
-#define ND1 -0.7162729496035415183e-1
-#define ND2 -0.3247795155696775148e-1
-#define ND3 -0.4225785421291932164e-2
-#define ND4 -0.3808984717603160127e-4
-#define ND5 0.8023464184964125826e-6
-
-#define DD0 0.2782907534642231184e0
-#define DD1 0.5549945896829343308e0
-#define DD2 0.3700732511330698879e0
-#define DD3 0.9395783438240780722e-1
-#define DD4 0.7200057974217143034e-2
-
-#define NE0 -0.121224194072430701e-4
-#define NE1 -0.273145455834305218e-3
-#define NE2 -0.152866982560895737e-2
-#define NE3 -0.292231744584913045e-2
-#define NE4 -0.174670900236060220e-2
-#define NE5 -0.891754209521081538e-12
-
-#define DE0 0.499426632161317606e-4
-#define DE1 0.139591210395547054e-2
-#define DE2 0.107665231109108629e-1
-#define DE3 0.325809818749873406e-1
-#define DE4 0.415222526655158363e-1
-#define DE5 0.186315628774716763e-1
-
-#define NF0 -0.195436610112717345e-4
-#define NF1 -0.233315515113382977e-3
-#define NF2 -0.645380957611087587e-3
-#define NF3 -0.478948863920281252e-3
-#define NF4 -0.805234112224091742e-12
-#define NF5 0.246428598194879283e-13
-
-#define DF0 0.822166621698664729e-4
-#define DF1 0.135346265620413852e-2
-#define DF2 0.602739242861830658e-2
-#define DF3 0.972227795510722956e-2
-#define DF4 0.510878800983771167e-2
-
-#define NG0 -0.209689451648100728e-6
-#define NG1 -0.219252358028695992e-5
-#define NG2 -0.551641756327550939e-5
-#define NG3 -0.382300259826830258e-5
-#define NG4 -0.421182121910667329e-17
-#define NG5 0.492236019998237684e-19
-
-#define DG0 0.889178444424237735e-6
-#define DG1 0.131152171690011152e-4
-#define DG2 0.537955850185616847e-4
-#define DG3 0.814966175170941864e-4
-#define DG4 0.407786943832260752e-4
-
-#define NH0 -0.178284193496441400e-6
-#define NH1 -0.928734186616614974e-6
-#define NH2 -0.923318925566302615e-6
-#define NH3 -0.776417026702577552e-19
-#define NH4 0.290845644810826014e-21
-
-#define DH0 0.786694697277890964e-6
-#define DH1 0.685435665630965488e-5
-#define DH2 0.153780175436788329e-4
-#define DH3 0.984873520613417917e-5
-
-#define NI0 -0.538003743384069117e-10
-#define NI1 -0.273698654196756169e-9
-#define NI2 -0.268129826956403568e-9
-#define NI3 -0.804163374628432850e-29
-
-#define DI0 0.238083376363471960e-9
-#define DI1 0.203579344621125934e-8
-#define DI2 0.450836980450693209e-8
-#define DI3 0.286005148753497156e-8
+_CLC_DEF _CLC_OVERLOAD _CLC_CONST __CLC_DOUBLEN __clc_asinh(__CLC_DOUBLEN x) {
+  __CLC_DOUBLEN y = __clc_fabs(x);
+  __CLC_LONGN b = y >= 0x1.0p+512;
+  __CLC_DOUBLEN s = b ? 0x1.0p-512 : 1.0;
+  __CLC_DOUBLEN sy = y * s;
+  __CLC_EP_PAIR a =
+      __clc_ep_add(sy, __clc_ep_sqrt(__clc_ep_add(__clc_ep_sqr(sy), s * s)));
+  __CLC_DOUBLEN z = __clc_ep_ln_hi(a, __CLC_CONVERT_INTN(b) ? 512 : 0);
 
-_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE __clc_asinh(__CLC_GENTYPE x) {
-  const __CLC_GENTYPE rteps = 0x1.6a09e667f3bcdp-27;
-  const __CLC_GENTYPE recrteps = 0x1.6a09e667f3bcdp+26;
+  z = y < 0x1.0p-27 ? y : z;
+  z = y == __CLC_GENTYPE_INF ? y : z;
 
-  // log2_lead and log2_tail sum to an extra-precise version of log(2)
-  const __CLC_GENTYPE log2_lead = 0x1.62e42ep-1;
-  const __CLC_GENTYPE log2_tail = 0x1.efa39ef35793cp-25;
-
-  __CLC_GENTYPE absx = __clc_fabs(x);
-
-  __CLC_GENTYPE t = x * x;
-  __CLC_GENTYPE pn, tn, pd, td;
-
-  // XXX we are betting here that we can evaluate 8 pairs of
-  // polys faster than we can grab 12 coefficients from a table
-  // This also uses fewer registers
-
-  // |x| >= 8
-  pn = __clc_fma(t, __clc_fma(t, __clc_fma(t, NI3, NI2), NI1), NI0);
-  pd = __clc_fma(t, __clc_fma(t, __clc_fma(t, DI3, DI2), DI1), DI0);
-
-  tn = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, NH4, NH3), NH2), NH1), NH0);
-  td = __clc_fma(t, __clc_fma(t, __clc_fma(t, DH3, DH2), DH1), DH0);
-  pn = absx < 8.0 ? tn : pn;
-  pd = absx < 8.0 ? td : pd;
-
-  tn = __clc_fma(
-      t,
-      __clc_fma(t, __clc_fma(t, __clc_fma(t, __clc_fma(t, NG5, NG4), NG3), NG2),
-                NG1),
-      NG0);
-  td = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, DG4, DG3), DG2), DG1), DG0);
-  pn = absx < 4.0 ? tn : pn;
-  pd = absx < 4.0 ? td : pd;
-
-  tn = __clc_fma(
-      t,
-      __clc_fma(t, __clc_fma(t, __clc_fma(t, __clc_fma(t, NF5, NF4), NF3), NF2),
-                NF1),
-      NF0);
-  td = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, DF4, DF3), DF2), DF1), DF0);
-  pn = absx < 2.0 ? tn : pn;
-  pd = absx < 2.0 ? td : pd;
-
-  tn = __clc_fma(
-      t,
-      __clc_fma(t, __clc_fma(t, __clc_fma(t, __clc_fma(t, NE5, NE4), NE3), NE2),
-                NE1),
-      NE0);
-  td = __clc_fma(
-      t,
-      __clc_fma(t, __clc_fma(t, __clc_fma(t, __clc_fma(t, DE5, DE4), DE3), DE2),
-                DE1),
-      DE0);
-  pn = absx < 1.5 ? tn : pn;
-  pd = absx < 1.5 ? td : pd;
-
-  tn = __clc_fma(
-      t,
-      __clc_fma(t, __clc_fma(t, __clc_fma(t, __clc_fma(t, ND5, ND4), ND3), ND2),
-                ND1),
-      ND0);
-  td = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, DD4, DD3), DD2), DD1), DD0);
-  pn = absx <= 1.0 ? tn : pn;
-  pd = absx <= 1.0 ? td : pd;
-
-  tn = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, NC4, NC3), NC2), NC1), NC0);
-  td = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, DC4, DC3), DC2), DC1), DC0);
-  pn = absx < 0.75 ? tn : pn;
-  pd = absx < 0.75 ? td : pd;
-
-  tn = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, NB4, NB3), NB2), NB1), NB0);
-  td = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, DB4, DB3), DB2), DB1), DB0);
-  pn = absx < 0.5 ? tn : pn;
-  pd = absx < 0.5 ? td : pd;
-
-  tn = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, NA4, NA3), NA2), NA1), NA0);
-  td = __clc_fma(
-      t, __clc_fma(t, __clc_fma(t, __clc_fma(t, DA4, DA3), DA2), DA1), DA0);
-  pn = absx < 0.25 ? tn : pn;
-  pd = absx < 0.25 ? td : pd;
-
-  __CLC_GENTYPE pq = MATH_DIVIDE(pn, pd);
-
-  // |x| <= 1
-  __CLC_GENTYPE result1 = __clc_fma(absx * t, pq, absx);
-
-  // Other ranges
-  __CLC_LONGN xout = absx <= 32.0 || absx > recrteps;
-  __CLC_GENTYPE y = absx + __clc_sqrt(__clc_fma(absx, absx, 1.0));
-  y = xout ? absx : y;
-
-  __CLC_GENTYPE r1, r2;
-  __CLC_INTN xexp;
-  __clc_ep_log(y, &xexp, &r1, &r2);
-
-  __CLC_GENTYPE dxexp = __CLC_CONVERT_GENTYPE(
-      __CLC_CONVERT_LONGN(xexp) + (xout ? (__CLC_LONGN)1 : (__CLC_LONGN)0));
-  r1 = __clc_fma(dxexp, log2_lead, r1);
-  r2 = __clc_fma(dxexp, log2_tail, r2);
-
-  // 1 < x <= 32
-  __CLC_GENTYPE v2 = (pq + 0.25) / t;
-  __CLC_GENTYPE r = v2 + r1;
-  __CLC_GENTYPE s = ((r1 - r) + v2) + r2;
-  __CLC_GENTYPE v1 = r + s;
-  v2 = (r - v1) + s;
-  __CLC_GENTYPE result2 = v1 + v2;
-
-  // x > 32
-  __CLC_GENTYPE result3 = r1 + r2;
-
-  __CLC_GENTYPE ret = absx > 1.0 ? result2 : result1;
-  ret = absx > 32.0 ? result3 : ret;
-  ret = x < 0.0 ? -ret : ret;
-
-  // NaN, +-Inf, or x small enough that asinh(x) = x
-  ret = __clc_select(
-      ret, x,
-      __CLC_CONVERT_LONGN(__clc_isnan(x) || __clc_isinf(x) || absx < rteps));
-  return ret;
+  return __clc_copysign(z, x);
 }
 
 #elif __CLC_FPSIZE == 16
 
-_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE __clc_asinh(__CLC_GENTYPE x) {
-  return __CLC_CONVERT_GENTYPE(__clc_asinh(__CLC_CONVERT_FLOATN(x)));
+_CLC_DEF _CLC_OVERLOAD _CLC_CONST __CLC_HALFN __clc_asinh(__CLC_HALFN hx) {
+  __CLC_FLOATN x = __CLC_CONVERT_FLOATN(__clc_fabs(hx));
+  __CLC_FLOATN t = x + __clc_sqrt_fast(__clc_mad(x, x, 1.0f));
+  __CLC_HALFN ret = __clc_copysign(
+      __CLC_CONVERT_HALFN(__clc_log2_fast(t) * 0x1.62e430p-1f), hx);
+
+  return __clc_isfinite(hx) ? ret : hx;
 }
 
 #endif


        


More information about the cfe-commits mailing list