FindBLAS: Make find_package(nvpl) quiet

Fixes: #27451
This commit is contained in:
Vito Gamberini
2025-12-10 11:29:17 -05:00
parent 892fad3d23
commit 1bf46814c4
2 changed files with 2 additions and 2 deletions

View File

@@ -1364,7 +1364,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)

View File

@@ -737,7 +737,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)