1 /* 2 * Coefficients for single-precision vector log10 function. 3 * 4 * Copyright (c) 2020-2023, Arm Limited. 5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception 6 */ 7 #include "math_config.h" 8 9 const float __v_log10f_poly[] = { 10 /* Use order 9 for log10(1+x), i.e. order 8 for log10(1+x)/x, with x in 11 [-1/3, 1/3] (offset=2/3). Max. relative error: 0x1.068ee468p-25. */ 12 -0x1.bcb79cp-3f, 0x1.2879c8p-3f, -0x1.bcd472p-4f, 0x1.6408f8p-4f, 13 -0x1.246f8p-4f, 0x1.f0e514p-5f, -0x1.0fc92cp-4f, 0x1.f5f76ap-5f}; 14