[libc-commits] [libc] fa1e49c - [libc] Disable nexttoward tests on the GPU

Joseph Huber via libc-commits libc-commits at lists.llvm.org
Wed Nov 22 05:46:32 PST 2023


Author: Joseph Huber
Date: 2023-11-22T07:46:25-06:00
New Revision: fa1e49cf3785bab01c902063e013b2305630417f

URL: https://github.com/llvm/llvm-project/commit/fa1e49cf3785bab01c902063e013b2305630417f
DIFF: https://github.com/llvm/llvm-project/commit/fa1e49cf3785bab01c902063e013b2305630417f.diff

LOG: [libc] Disable nexttoward tests on the GPU

Summary:

These tests are currently failing for some reason. A lot of math tests
on the GPU are disabled temporarily and need to be fixed.

Added: 
    

Modified: 
    libc/test/src/math/smoke/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/test/src/math/smoke/CMakeLists.txt b/libc/test/src/math/smoke/CMakeLists.txt
index 298a1b1a400f1d8..6ebd374d04a5ba0 100644
--- a/libc/test/src/math/smoke/CMakeLists.txt
+++ b/libc/test/src/math/smoke/CMakeLists.txt
@@ -1251,8 +1251,8 @@ add_fp_unittest(
     libc.src.__support.FPUtil.fp_bits
 )
 
-# FIXME: These tests are currently spurious for NVPTX.
-if(NOT LIBC_GPU_TARGET_ARCHITECTURE_IS_NVPTX)
+# FIXME: These tests are currently spurious for the GPU.
+if(NOT LIBC_TARGET_ARCHITECTURE_IS_GPU)
   add_fp_unittest(
     nexttoward_test
     SUITE


        


More information about the libc-commits mailing list