Path: blob/main/contrib/arm-optimized-routines/math/aarch64/advsimd/atan2.c
48378 views
/*1* Double-precision vector atan2(x) function.2*3* Copyright (c) 2021-2024, Arm Limited.4* SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception5*/67#include "v_math.h"8#include "test_sig.h"9#include "test_defs.h"1011static const struct data12{13float64x2_t c0, c2, c4, c6, c8, c10, c12, c14, c16, c18;14float64x2_t pi_over_2;15double c1, c3, c5, c7, c9, c11, c13, c15, c17, c19;16uint64x2_t zeroinfnan, minustwo;17} data = {18/* Coefficients of polynomial P such that atan(x)~x+x*P(x^2) on19[2**-1022, 1.0]. */20.c0 = V2 (-0x1.5555555555555p-2),21.c1 = 0x1.99999999996c1p-3,22.c2 = V2 (-0x1.2492492478f88p-3),23.c3 = 0x1.c71c71bc3951cp-4,24.c4 = V2 (-0x1.745d160a7e368p-4),25.c5 = 0x1.3b139b6a88ba1p-4,26.c6 = V2 (-0x1.11100ee084227p-4),27.c7 = 0x1.e1d0f9696f63bp-5,28.c8 = V2 (-0x1.aebfe7b418581p-5),29.c9 = 0x1.842dbe9b0d916p-5,30.c10 = V2 (-0x1.5d30140ae5e99p-5),31.c11 = 0x1.338e31eb2fbbcp-5,32.c12 = V2 (-0x1.00e6eece7de8p-5),33.c13 = 0x1.860897b29e5efp-6,34.c14 = V2 (-0x1.0051381722a59p-6),35.c15 = 0x1.14e9dc19a4a4ep-7,36.c16 = V2 (-0x1.d0062b42fe3bfp-9),37.c17 = 0x1.17739e210171ap-10,38.c18 = V2 (-0x1.ab24da7be7402p-13),39.c19 = 0x1.358851160a528p-16,40.pi_over_2 = V2 (0x1.921fb54442d18p+0),41.zeroinfnan = V2 (2 * 0x7ff0000000000000ul - 1),42.minustwo = V2 (0xc000000000000000),43};4445#define SignMask v_u64 (0x8000000000000000)4647/* Special cases i.e. 0, infinity, NaN (fall back to scalar calls). */48static float64x2_t VPCS_ATTR NOINLINE49special_case (float64x2_t y, float64x2_t x, float64x2_t ret,50uint64x2_t sign_xy, uint64x2_t cmp)51{52/* Account for the sign of x and y. */53ret = vreinterpretq_f64_u64 (54veorq_u64 (vreinterpretq_u64_f64 (ret), sign_xy));55return v_call2_f64 (atan2, y, x, ret, cmp);56}5758/* Returns 1 if input is the bit representation of 0, infinity or nan. */59static inline uint64x2_t60zeroinfnan (uint64x2_t i, const struct data *d)61{62/* (2 * i - 1) >= (2 * asuint64 (INFINITY) - 1). */63return vcgeq_u64 (vsubq_u64 (vaddq_u64 (i, i), v_u64 (1)), d->zeroinfnan);64}6566/* Fast implementation of vector atan2.67Maximum observed error is 2.8 ulps:68_ZGVnN2vv_atan2 (0x1.9651a429a859ap+5, 0x1.953075f4ee26p+5)69got 0x1.92d628ab678ccp-170want 0x1.92d628ab678cfp-1. */71float64x2_t VPCS_ATTR V_NAME_D2 (atan2) (float64x2_t y, float64x2_t x)72{73const struct data *d = ptr_barrier (&data);7475uint64x2_t ix = vreinterpretq_u64_f64 (x);76uint64x2_t iy = vreinterpretq_u64_f64 (y);7778uint64x2_t special_cases79= vorrq_u64 (zeroinfnan (ix, d), zeroinfnan (iy, d));8081uint64x2_t sign_x = vandq_u64 (ix, SignMask);82uint64x2_t sign_y = vandq_u64 (iy, SignMask);83uint64x2_t sign_xy = veorq_u64 (sign_x, sign_y);8485float64x2_t ax = vabsq_f64 (x);86float64x2_t ay = vabsq_f64 (y);8788uint64x2_t pred_xlt0 = vcltzq_f64 (x);89uint64x2_t pred_aygtax = vcagtq_f64 (y, x);9091/* Set up z for call to atan. */92float64x2_t n = vbslq_f64 (pred_aygtax, vnegq_f64 (ax), ay);93float64x2_t q = vbslq_f64 (pred_aygtax, ay, ax);94float64x2_t z = vdivq_f64 (n, q);9596/* Work out the correct shift. */97float64x2_t shift98= vreinterpretq_f64_u64 (vandq_u64 (pred_xlt0, d->minustwo));99shift = vbslq_f64 (pred_aygtax, vaddq_f64 (shift, v_f64 (1.0)), shift);100shift = vmulq_f64 (shift, d->pi_over_2);101102/* Calculate the polynomial approximation.103Use split Estrin scheme for P(z^2) with deg(P)=19. Use split instead of104full scheme to avoid underflow in x^16.105The order 19 polynomial P approximates106(atan(sqrt(x))-sqrt(x))/x^(3/2). */107float64x2_t z2 = vmulq_f64 (z, z);108float64x2_t x2 = vmulq_f64 (z2, z2);109float64x2_t x4 = vmulq_f64 (x2, x2);110float64x2_t x8 = vmulq_f64 (x4, x4);111112float64x2_t c13 = vld1q_f64 (&d->c1);113float64x2_t c57 = vld1q_f64 (&d->c5);114float64x2_t c911 = vld1q_f64 (&d->c9);115float64x2_t c1315 = vld1q_f64 (&d->c13);116float64x2_t c1719 = vld1q_f64 (&d->c17);117118/* estrin_7. */119float64x2_t p01 = vfmaq_laneq_f64 (d->c0, z2, c13, 0);120float64x2_t p23 = vfmaq_laneq_f64 (d->c2, z2, c13, 1);121float64x2_t p03 = vfmaq_f64 (p01, x2, p23);122123float64x2_t p45 = vfmaq_laneq_f64 (d->c4, z2, c57, 0);124float64x2_t p67 = vfmaq_laneq_f64 (d->c6, z2, c57, 1);125float64x2_t p47 = vfmaq_f64 (p45, x2, p67);126127float64x2_t p07 = vfmaq_f64 (p03, x4, p47);128129/* estrin_11. */130float64x2_t p89 = vfmaq_laneq_f64 (d->c8, z2, c911, 0);131float64x2_t p1011 = vfmaq_laneq_f64 (d->c10, z2, c911, 1);132float64x2_t p811 = vfmaq_f64 (p89, x2, p1011);133134float64x2_t p1213 = vfmaq_laneq_f64 (d->c12, z2, c1315, 0);135float64x2_t p1415 = vfmaq_laneq_f64 (d->c14, z2, c1315, 1);136float64x2_t p1215 = vfmaq_f64 (p1213, x2, p1415);137138float64x2_t p1617 = vfmaq_laneq_f64 (d->c16, z2, c1719, 0);139float64x2_t p1819 = vfmaq_laneq_f64 (d->c18, z2, c1719, 1);140float64x2_t p1619 = vfmaq_f64 (p1617, x2, p1819);141142float64x2_t p815 = vfmaq_f64 (p811, x4, p1215);143float64x2_t p819 = vfmaq_f64 (p815, x8, p1619);144145float64x2_t ret = vfmaq_f64 (p07, p819, x8);146147/* Finalize. y = shift + z + z^3 * P(z^2). */148ret = vfmaq_f64 (z, ret, vmulq_f64 (z2, z));149ret = vaddq_f64 (ret, shift);150151if (unlikely (v_any_u64 (special_cases)))152return special_case (y, x, ret, sign_xy, special_cases);153154/* Account for the sign of x and y. */155ret = vreinterpretq_f64_u64 (156veorq_u64 (vreinterpretq_u64_f64 (ret), sign_xy));157158return ret;159}160161/* Arity of 2 means no mathbench entry emitted. See test/mathbench_funcs.h. */162TEST_SIG (V, D, 2, atan2)163// TODO tighten this once __v_atan2 is fixed164TEST_ULP (V_NAME_D2 (atan2), 2.9)165TEST_DISABLE_FENV (V_NAME_D2 (atan2))166TEST_INTERVAL (V_NAME_D2 (atan2), -10.0, 10.0, 50000)167TEST_INTERVAL (V_NAME_D2 (atan2), -1.0, 1.0, 40000)168TEST_INTERVAL (V_NAME_D2 (atan2), 0.0, 1.0, 40000)169TEST_INTERVAL (V_NAME_D2 (atan2), 1.0, 100.0, 40000)170TEST_INTERVAL (V_NAME_D2 (atan2), 1e6, 1e32, 40000)171172173