From 1bf46814c42449e4849a898fe27fc2e0a75e3f39 Mon Sep 17 00:00:00 2001 From: Vito Gamberini Date: Wed, 10 Dec 2025 11:29:17 -0500 Subject: [PATCH] FindBLAS: Make find_package(nvpl) quiet Fixes: #27451 --- Modules/FindBLAS.cmake | 2 +- Modules/FindLAPACK.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake index b45a279b94..2b8a75a14a 100644 --- a/Modules/FindBLAS.cmake +++ b/Modules/FindBLAS.cmake @@ -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) diff --git a/Modules/FindLAPACK.cmake b/Modules/FindLAPACK.cmake index af358c3d98..8bd5121875 100644 --- a/Modules/FindLAPACK.cmake +++ b/Modules/FindLAPACK.cmake @@ -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)