[libc-commits] [libc] a127d61 - [libc] Disable AOR ulp tests for sinf, cosf and sincosf.
Siva Chandra Reddy via libc-commits
libc-commits at lists.llvm.org
Fri Apr 17 09:02:08 PDT 2020
Author: Siva Chandra Reddy
Date: 2020-04-17T09:01:44-07:00
New Revision: a127d618357a9b09d755c0af3d141e49d8902c40
URL: https://github.com/llvm/llvm-project/commit/a127d618357a9b09d755c0af3d141e49d8902c40
DIFF: https://github.com/llvm/llvm-project/commit/a127d618357a9b09d755c0af3d141e49d8902c40.diff
LOG: [libc] Disable AOR ulp tests for sinf, cosf and sincosf.
They seemed to fallback to the system libc and start depending on its
accuracy.
Added:
Modified:
libc/AOR_v20.02/math/test/runulp.sh
Removed:
################################################################################
diff --git a/libc/AOR_v20.02/math/test/runulp.sh b/libc/AOR_v20.02/math/test/runulp.sh
index 431829bfc52f..9e93674727a7 100755
--- a/libc/AOR_v20.02/math/test/runulp.sh
+++ b/libc/AOR_v20.02/math/test/runulp.sh
@@ -93,25 +93,25 @@ t log2f 0 0xffff0000 10000
t log2f 0x1p-4 0x1p4 50000
t log2f 0 inf 50000
-L=0.06
-t sinf 0 0xffff0000 10000
-t sinf 0x1p-14 0x1p54 50000
-t sinf -0x1p-14 -0x1p54 50000
-
-L=0.06
-t cosf 0 0xffff0000 10000
-t cosf 0x1p-14 0x1p54 50000
-t cosf -0x1p-14 -0x1p54 50000
-
-L=0.06
-t sincosf_sinf 0 0xffff0000 10000
-t sincosf_sinf 0x1p-14 0x1p54 50000
-t sincosf_sinf -0x1p-14 -0x1p54 50000
-
-L=0.06
-t sincosf_cosf 0 0xffff0000 10000
-t sincosf_cosf 0x1p-14 0x1p54 50000
-t sincosf_cosf -0x1p-14 -0x1p54 50000
+#L=0.06
+#t sinf 0 0xffff0000 10000
+#t sinf 0x1p-14 0x1p54 50000
+#t sinf -0x1p-14 -0x1p54 50000
+#
+#L=0.06
+#t cosf 0 0xffff0000 10000
+#t cosf 0x1p-14 0x1p54 50000
+#t cosf -0x1p-14 -0x1p54 50000
+#
+#L=0.06
+#t sincosf_sinf 0 0xffff0000 10000
+#t sincosf_sinf 0x1p-14 0x1p54 50000
+#t sincosf_sinf -0x1p-14 -0x1p54 50000
+#
+#L=0.06
+#t sincosf_cosf 0 0xffff0000 10000
+#t sincosf_cosf 0x1p-14 0x1p54 50000
+#t sincosf_cosf -0x1p-14 -0x1p54 50000
L=0.4
t powf 0x1p-1 0x1p1 x 0x1p-7 0x1p7 50000
More information about the libc-commits
mailing list