File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ endif ()
164164## NVIDIA GPU sampling via NVML ##
165165####################################################################################################################
166166# find libraries necessary for NVML and link against them
167- find_package (CUDAToolkit )
167+ find_package (CUDAToolkit QUIET )
168168if (CUDAToolkit_FOUND)
169169 target_link_libraries (${HWS_LIBRARY_NAME} PRIVATE CUDA::nvml )
170170
@@ -188,7 +188,7 @@ endif ()
188188## AMD GPU sampling via ROCm SMI lib ##
189189####################################################################################################################
190190## try finding ROCm SMI
191- find_package (rocm_smi )
191+ find_package (rocm_smi QUIET )
192192if (rocm_smi_FOUND)
193193 target_link_libraries (${HWS_LIBRARY_NAME} PRIVATE -lrocm_smi64 )
194194 target_include_directories (${HWS_LIBRARY_NAME} PRIVATE ${ROCM_SMI_INCLUDE_DIR} )
@@ -213,7 +213,7 @@ endif ()
213213## Intel GPU sampling via Level Zero ##
214214####################################################################################################################
215215# try finding Level Zero
216- find_package (level_zero )
216+ find_package (level_zero QUIET )
217217if (level_zero_FOUND)
218218 target_link_libraries (${HWS_LIBRARY_NAME} PRIVATE level_zero )
219219
You can’t perform that action at this time.
0 commit comments