diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2025-01-10 10:34:52 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2025-01-10 10:39:34 +0000 |
commit | 9d1de25930735261c16ed874a933b4c1f1d9041e (patch) | |
tree | b0cac1c933cc1ecb885c7e757b89ffbf13f1f012 /pl/math/cbrt_data.c | |
parent | edc5c0de794f521eb620d2b6cbaee2434442a8f3 (diff) |
Update the Arm Optimized Routinesvendor/arm-optimized-routines/v25.01vendor/arm-optimized-routines
Import the v25.01 release of the Arm Optimized Routines [1].
[1] https://github.com/ARM-software/optimized-routines/tree/v25.01
Sponsored by: Arm Ltd
Diffstat (limited to 'pl/math/cbrt_data.c')
-rw-r--r-- | pl/math/cbrt_data.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/pl/math/cbrt_data.c b/pl/math/cbrt_data.c deleted file mode 100644 index 3d484c2779e2..000000000000 --- a/pl/math/cbrt_data.c +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Coefficients and table entries for double-precision cbrt(x). - * - * Copyright (c) 2022-2023, Arm Limited. - * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception - */ - -#include "math_config.h" - -const struct cbrt_data __cbrt_data - = {.poly = { /* Coefficients for very rough approximation of cbrt(x) in [0.5, 1]. - See cbrt.sollya for details of generation. */ - 0x1.c14e8ee44767p-2, 0x1.dd2d3f99e4c0ep-1, -0x1.08e83026b7e74p-1, 0x1.2c74eaa3ba428p-3}, - .table = { /* table[i] = 2^((i - 2) / 3). */ - 0x1.428a2f98d728bp-1, 0x1.965fea53d6e3dp-1, 0x1p0, 0x1.428a2f98d728bp0, 0x1.965fea53d6e3dp0}}; |