Checking patch sysdeps/aarch64/fpu/cosh_sve.c...
error: while searching for:
{
float64_t poly[3];
float64_t inv_ln2, ln2_hi, ln2_lo, shift, thres;
uint64_t index_mask, special_bound;
} data = {
.poly = { 0x1.fffffffffffd4p-2, 0x1.5555571d6b68cp-3,
0x1.5555576a59599p-5, },
error: patch failed: sysdeps/aarch64/fpu/cosh_sve.c:23
error: sysdeps/aarch64/fpu/cosh_sve.c: patch does not apply
Checking patch sysdeps/aarch64/fpu/exp10_sve.c...
error: while searching for:
. */
#include "sv_math.h"
#include "poly_sve_f64.h"
#define SpecialBound 307.0 /* floor (log10 (2^1023)). */
static const struct data
{
double poly[5];
double shift, log10_2, log2_10_hi, log2_10_lo, scale_thres, special_bound;
} data = {
/* Coefficients generated using Remez algorithm.
rel error: 0x1.9fcb9b3p-60
abs error: 0x1.a20d9598p-60 in [ -log10(2)/128, log10(2)/128 ]
max ulp err 0.52 +0.5. */
.poly = { 0x1.26bb1bbb55516p1, 0x1.53524c73cd32ap1, 0x1.0470591daeafbp1,
0x1.2bd77b1361ef6p0, 0x1.142b5d54e9621p-1 },
/* 1.5*2^46+1023. This value is further explained below. */
.shift = 0x1.800000000ffc0p+46,
.log10_2 = 0x1.a934f0979a371p1, /* 1/log2(10). */
error: patch failed: sysdeps/aarch64/fpu/exp10_sve.c:18
error: sysdeps/aarch64/fpu/exp10_sve.c: patch does not apply
Checking patch sysdeps/aarch64/fpu/exp2_sve.c...
error: while searching for:
. */
#include "sv_math.h"
#include "poly_sve_f64.h"
#define N (1 << V_EXP_TABLE_BITS)
error: patch failed: sysdeps/aarch64/fpu/exp2_sve.c:18
error: sysdeps/aarch64/fpu/exp2_sve.c: patch does not apply
Checking patch sysdeps/aarch64/fpu/exp_sve.c...
error: while searching for:
static const struct data
{
double poly[4];
double ln2_hi, ln2_lo, inv_ln2, shift, thres;
} data = {
.poly = { /* ulp error: 0.53. */
0x1.fffffffffdbcdp-2, 0x1.555555555444cp-3, 0x1.555573c6a9f7dp-5,
0x1.1111266d28935p-7 },
.ln2_hi = 0x1.62e42fefa3800p-1,
.ln2_lo = 0x1.ef35793c76730p-45,
/* 1/ln2. */
error: patch failed: sysdeps/aarch64/fpu/exp_sve.c:21
error: sysdeps/aarch64/fpu/exp_sve.c: patch does not apply
Checking patch sysdeps/aarch64/fpu/sv_expf_inline.h...
error: while searching for:
/* scale = 2^(n/N). */
svfloat32_t scale = svexpa (svreinterpret_u32 (z));
/* y = exp(r) - 1 ~= r + C0 r^2 + C1 r^3 + C2 r^4 + C3 r^5 + C4 r^6. */
svfloat32_t p12 = svmla_lane (sv_f32 (d->c1), r, lane_consts, 2);
svfloat32_t p34 = svmla_lane (sv_f32 (d->c3), r, lane_consts, 3);
svfloat32_t r2 = svmul_x (svptrue_b32 (), r, r);
error: patch failed: sysdeps/aarch64/fpu/sv_expf_inline.h:61
error: sysdeps/aarch64/fpu/sv_expf_inline.h: patch does not apply