diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake index 715c174731..9f986a78e7 100644 --- a/Modules/FindBLAS.cmake +++ b/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) diff --git a/Modules/FindLAPACK.cmake b/Modules/FindLAPACK.cmake index d4486f2b57..52b13d9762 100644 --- a/Modules/FindLAPACK.cmake +++ b/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)