From 0d000be25df5ecebba2cf95f219a53c218fcb761 Mon Sep 17 00:00:00 2001 From: Joe Ramsay Date: Thu, 22 Dec 2022 17:50:40 +0000 Subject: pl/math: Add scalar & vector/Neon atanh New routines are both based on existing log1p routines. Scalar is accurate to 3 ULP, Neon to 3.5 ULP. Both set fp exceptions correctly regardless of build config. --- pl/math/s_atanh_3u5.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pl/math/s_atanh_3u5.c (limited to 'pl/math/s_atanh_3u5.c') diff --git a/pl/math/s_atanh_3u5.c b/pl/math/s_atanh_3u5.c new file mode 100644 index 0000000..11877c6 --- /dev/null +++ b/pl/math/s_atanh_3u5.c @@ -0,0 +1,6 @@ +/* + * Copyright (c) 2022, Arm Limited. + * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception + */ +#define SCALAR 1 +#include "v_atanh_3u5.c" -- cgit v1.2.3 From f0f80b8a19b2593491847ed87456694d789f6f80 Mon Sep 17 00:00:00 2001 From: Joe Ramsay Date: Fri, 6 Jan 2023 09:10:57 +0000 Subject: pl/math: Update copyright years All files in pl/math updated to 2023. --- pl/math/s_atanh_3u5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pl/math/s_atanh_3u5.c') diff --git a/pl/math/s_atanh_3u5.c b/pl/math/s_atanh_3u5.c index 11877c6..f6a5f75 100644 --- a/pl/math/s_atanh_3u5.c +++ b/pl/math/s_atanh_3u5.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022, Arm Limited. + * Copyright (c) 2022-2023, Arm Limited. * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception */ #define SCALAR 1 -- cgit v1.2.3