1*412f47f9SXin Li /*
2*412f47f9SXin Li * Double-precision SVE 2^x function.
3*412f47f9SXin Li *
4*412f47f9SXin Li * Copyright (c) 2023, Arm Limited.
5*412f47f9SXin Li * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
6*412f47f9SXin Li */
7*412f47f9SXin Li
8*412f47f9SXin Li #include "sv_math.h"
9*412f47f9SXin Li #include "poly_sve_f64.h"
10*412f47f9SXin Li #include "pl_sig.h"
11*412f47f9SXin Li #include "pl_test.h"
12*412f47f9SXin Li
13*412f47f9SXin Li #define N (1 << V_EXP_TABLE_BITS)
14*412f47f9SXin Li
15*412f47f9SXin Li #define BigBound 1022
16*412f47f9SXin Li #define UOFlowBound 1280
17*412f47f9SXin Li
18*412f47f9SXin Li static const struct data
19*412f47f9SXin Li {
20*412f47f9SXin Li double poly[4];
21*412f47f9SXin Li double shift, big_bound, uoflow_bound;
22*412f47f9SXin Li } data = {
23*412f47f9SXin Li /* Coefficients are computed using Remez algorithm with
24*412f47f9SXin Li minimisation of the absolute error. */
25*412f47f9SXin Li .poly = { 0x1.62e42fefa3686p-1, 0x1.ebfbdff82c241p-3, 0x1.c6b09b16de99ap-5,
26*412f47f9SXin Li 0x1.3b2abf5571ad8p-7 },
27*412f47f9SXin Li .shift = 0x1.8p52 / N,
28*412f47f9SXin Li .uoflow_bound = UOFlowBound,
29*412f47f9SXin Li .big_bound = BigBound,
30*412f47f9SXin Li };
31*412f47f9SXin Li
32*412f47f9SXin Li #define SpecialOffset 0x6000000000000000 /* 0x1p513. */
33*412f47f9SXin Li /* SpecialBias1 + SpecialBias1 = asuint(1.0). */
34*412f47f9SXin Li #define SpecialBias1 0x7000000000000000 /* 0x1p769. */
35*412f47f9SXin Li #define SpecialBias2 0x3010000000000000 /* 0x1p-254. */
36*412f47f9SXin Li
37*412f47f9SXin Li /* Update of both special and non-special cases, if any special case is
38*412f47f9SXin Li detected. */
39*412f47f9SXin Li static inline svfloat64_t
special_case(svbool_t pg,svfloat64_t s,svfloat64_t y,svfloat64_t n,const struct data * d)40*412f47f9SXin Li special_case (svbool_t pg, svfloat64_t s, svfloat64_t y, svfloat64_t n,
41*412f47f9SXin Li const struct data *d)
42*412f47f9SXin Li {
43*412f47f9SXin Li /* s=2^n may overflow, break it up into s=s1*s2,
44*412f47f9SXin Li such that exp = s + s*y can be computed as s1*(s2+s2*y)
45*412f47f9SXin Li and s1*s1 overflows only if n>0. */
46*412f47f9SXin Li
47*412f47f9SXin Li /* If n<=0 then set b to 0x6, 0 otherwise. */
48*412f47f9SXin Li svbool_t p_sign = svcmple (pg, n, 0.0); /* n <= 0. */
49*412f47f9SXin Li svuint64_t b = svdup_u64_z (p_sign, SpecialOffset);
50*412f47f9SXin Li
51*412f47f9SXin Li /* Set s1 to generate overflow depending on sign of exponent n. */
52*412f47f9SXin Li svfloat64_t s1 = svreinterpret_f64 (svsubr_x (pg, b, SpecialBias1));
53*412f47f9SXin Li /* Offset s to avoid overflow in final result if n is below threshold. */
54*412f47f9SXin Li svfloat64_t s2 = svreinterpret_f64 (
55*412f47f9SXin Li svadd_x (pg, svsub_x (pg, svreinterpret_u64 (s), SpecialBias2), b));
56*412f47f9SXin Li
57*412f47f9SXin Li /* |n| > 1280 => 2^(n) overflows. */
58*412f47f9SXin Li svbool_t p_cmp = svacgt (pg, n, d->uoflow_bound);
59*412f47f9SXin Li
60*412f47f9SXin Li svfloat64_t r1 = svmul_x (pg, s1, s1);
61*412f47f9SXin Li svfloat64_t r2 = svmla_x (pg, s2, s2, y);
62*412f47f9SXin Li svfloat64_t r0 = svmul_x (pg, r2, s1);
63*412f47f9SXin Li
64*412f47f9SXin Li return svsel (p_cmp, r1, r0);
65*412f47f9SXin Li }
66*412f47f9SXin Li
67*412f47f9SXin Li /* Fast vector implementation of exp2.
68*412f47f9SXin Li Maximum measured error is 1.65 ulp.
69*412f47f9SXin Li _ZGVsMxv_exp2(-0x1.4c264ab5b559bp-6) got 0x1.f8db0d4df721fp-1
70*412f47f9SXin Li want 0x1.f8db0d4df721dp-1. */
SV_NAME_D1(exp2)71*412f47f9SXin Li svfloat64_t SV_NAME_D1 (exp2) (svfloat64_t x, svbool_t pg)
72*412f47f9SXin Li {
73*412f47f9SXin Li const struct data *d = ptr_barrier (&data);
74*412f47f9SXin Li svbool_t no_big_scale = svacle (pg, x, d->big_bound);
75*412f47f9SXin Li svbool_t special = svnot_z (pg, no_big_scale);
76*412f47f9SXin Li
77*412f47f9SXin Li /* Reduce x to k/N + r, where k is integer and r in [-1/2N, 1/2N]. */
78*412f47f9SXin Li svfloat64_t shift = sv_f64 (d->shift);
79*412f47f9SXin Li svfloat64_t kd = svadd_x (pg, x, shift);
80*412f47f9SXin Li svuint64_t ki = svreinterpret_u64 (kd);
81*412f47f9SXin Li /* kd = k/N. */
82*412f47f9SXin Li kd = svsub_x (pg, kd, shift);
83*412f47f9SXin Li svfloat64_t r = svsub_x (pg, x, kd);
84*412f47f9SXin Li
85*412f47f9SXin Li /* scale ~= 2^(k/N). */
86*412f47f9SXin Li svuint64_t idx = svand_x (pg, ki, N - 1);
87*412f47f9SXin Li svuint64_t sbits = svld1_gather_index (pg, __v_exp_data, idx);
88*412f47f9SXin Li /* This is only a valid scale when -1023*N < k < 1024*N. */
89*412f47f9SXin Li svuint64_t top = svlsl_x (pg, ki, 52 - V_EXP_TABLE_BITS);
90*412f47f9SXin Li svfloat64_t scale = svreinterpret_f64 (svadd_x (pg, sbits, top));
91*412f47f9SXin Li
92*412f47f9SXin Li /* Approximate exp2(r) using polynomial. */
93*412f47f9SXin Li svfloat64_t r2 = svmul_x (pg, r, r);
94*412f47f9SXin Li svfloat64_t p = sv_pairwise_poly_3_f64_x (pg, r, r2, d->poly);
95*412f47f9SXin Li svfloat64_t y = svmul_x (pg, r, p);
96*412f47f9SXin Li
97*412f47f9SXin Li /* Assemble exp2(x) = exp2(r) * scale. */
98*412f47f9SXin Li if (unlikely (svptest_any (pg, special)))
99*412f47f9SXin Li return special_case (pg, scale, y, kd, d);
100*412f47f9SXin Li return svmla_x (pg, scale, scale, y);
101*412f47f9SXin Li }
102*412f47f9SXin Li
103*412f47f9SXin Li PL_SIG (SV, D, 1, exp2, -9.9, 9.9)
104*412f47f9SXin Li PL_TEST_ULP (SV_NAME_D1 (exp2), 1.15)
105*412f47f9SXin Li PL_TEST_SYM_INTERVAL (SV_NAME_D1 (exp2), 0, BigBound, 1000)
106*412f47f9SXin Li PL_TEST_SYM_INTERVAL (SV_NAME_D1 (exp2), BigBound, UOFlowBound, 100000)
107*412f47f9SXin Li PL_TEST_SYM_INTERVAL (SV_NAME_D1 (exp2), UOFlowBound, inf, 1000)
108