[libc-commits] [libc] e774482 - Fixed typo in GPU libm device library warning (#69752)

via libc-commits libc-commits at lists.llvm.org
Fri Oct 20 12:17:29 PDT 2023


Author: Anton Rydahl
Date: 2023-10-20T12:17:26-07:00
New Revision: e774482c4c410800e988e1f7ab056e8ba1741aff

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

LOG: Fixed typo in GPU libm device library warning (#69752)

Correcting a small typo in the error message when the CUDA device libraries are not detected.

Added: 
    

Modified: 
    libc/src/math/gpu/vendor/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/src/math/gpu/vendor/CMakeLists.txt b/libc/src/math/gpu/vendor/CMakeLists.txt
index a154c94a7009ada..f699ca103b5f89f 100644
--- a/libc/src/math/gpu/vendor/CMakeLists.txt
+++ b/libc/src/math/gpu/vendor/CMakeLists.txt
@@ -20,7 +20,7 @@ if(CUDAToolkit_FOUND)
          "SHELL:-Xclang -mlink-builtin-bitcode -Xclang ${libdevice_path}")
   endif()
 else()
-  message(STATUS "Could not find the ROCm device library. Unimplemented "
+  message(STATUS "Could not find the CUDA device library. Unimplemented "
                  "functions will be an external reference to the vendor libraries.")
 endif()
 


        


More information about the libc-commits mailing list