Explorar el Código

Merge topic 'fix-nvpl'

1bf46814c4 FindBLAS: Make find_package(nvpl) quiet

Acked-by: Kitware Robot <[email protected]>
Tested-by: buildbot <[email protected]>
Merge-request: !11498
Brad King hace 1 mes
padre
commit
85d359f008
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      Modules/FindBLAS.cmake
  2. 1 1
      Modules/FindLAPACK.cmake

+ 1 - 1
Modules/FindBLAS.cmake

@@ -1378,7 +1378,7 @@ if(BLA_VENDOR STREQUAL "NVPL" OR BLA_VENDOR STREQUAL "All")
   endif()
 
   if(NOT BLAS_LIBRARIES)
-    find_package(nvpl)
+    find_package(nvpl QUIET)
     if(nvpl_FOUND)
       foreach(_nvpl_thread IN LISTS _blas_nvpl_threads)
         foreach(_nvpl_int IN LISTS _blas_nvpl_ints)

+ 1 - 1
Modules/FindLAPACK.cmake

@@ -750,7 +750,7 @@ if(NOT LAPACK_NOT_FOUND_MESSAGE)
       list(APPEND _lapack_nvpl_threads "_seq")
     endif()
 
-    find_package(nvpl)
+    find_package(nvpl QUIET)
     if(nvpl_FOUND)
       foreach(_nvpl_thread IN LISTS _lapack_nvpl_threads)
         foreach(_nvpl_int IN LISTS _lapack_nvpl_ints)