Skip to content

Commit 72ff6aa

Browse files
committed
Enhance build summary
1 parent c1024f8 commit 72ff6aa

1 file changed

Lines changed: 30 additions & 10 deletions

File tree

cmake/CollectBuildInfoVars.cmake

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,12 @@ else()
213213
set(ABACUS_CUSOLVERMP_VERSION "no")
214214
endif()
215215

216+
if(ENABLE_CUBLASMP)
217+
set(ABACUS_CUBLASMP_VERSION "yes")
218+
else()
219+
set(ABACUS_CUBLASMP_VERSION "no")
220+
endif()
221+
216222
# EXX Libraries
217223
if(ENABLE_LIBRI)
218224
set(ABACUS_LIBRI_VERSION "yes (version unknown)")
@@ -231,6 +237,11 @@ if(ENABLE_LIBRI)
231237
if(ABACUS_LIBRI_VERSION STREQUAL "yes (version unknown)" AND LIBRI_DIR)
232238
set(ABACUS_LIBRI_VERSION "yes (path: ${LIBRI_DIR})")
233239
endif()
240+
if(EXX_DEV)
241+
set(ABACUS_EXX_DEV "Enabled")
242+
else()
243+
set(ABACUS_EXX_DEV "Disabled")
244+
endif()
234245
else()
235246
set(ABACUS_LIBRI_VERSION "no")
236247
endif()
@@ -394,14 +405,23 @@ message(" OpenMP Support : ${ABACUS_OPENMP_VERSION}")
394405
message(" -------------------------------------------------------------------")
395406
message(" LCAO Enabled : ${ABACUS_LCAO_ENABLED}")
396407
message(" -------------------------------------------------------------------")
397-
message(" Math Libraries : BLAS = ${ABACUS_BLAS_VENDOR}")
398-
message(" FFTW = ${ABACUS_FFTW_VERSION}")
399-
message(" ELPA = ${ABACUS_ELPA_VERSION}")
400-
message(" Accelerators : CUDA = ${ABACUS_CUDA_VERSION}")
401-
message(" ROCm = ${ABACUS_ROCM_VERSION}")
402-
message(" Machine Learning : Torch = ${ABACUS_LIBTORCH_VERSION}")
403-
message(" DeePMD = ${ABACUS_DEEPMD_VERSION}")
404-
message(" NEP = ${ABACUS_NEP_VERSION}")
405-
message(" Features : Libxc = ${ABACUS_LIBXC_VERSION}")
406-
message(" LibRI = ${ABACUS_LIBRI_VERSION}")
408+
message(" Math Libraries : BLAS = ${ABACUS_BLAS_VENDOR}")
409+
message(" FFTW = ${ABACUS_FFTW_VERSION}")
410+
message(" ELPA = ${ABACUS_ELPA_VERSION}")
411+
message(" Accelerators : CUDA = ${ABACUS_CUDA_VERSION}")
412+
if(USE_CUDA)
413+
message(" CUDA-MPI = ${ABACUS_ROCM_VERSION}")
414+
message(" cuSOLVERMp = ${ABACUS_CUSOLVERMP_VERSION}")
415+
message(" cuBLASMp = ${ABACUS_CUBLASMP_VERSION}")
416+
endif()
417+
message(" HIP/ROCm = ${ABACUS_ROCM_VERSION}")
418+
message(" Machine Learning : Torch = ${ABACUS_LIBTORCH_VERSION}")
419+
message(" DeePMD = ${ABACUS_DEEPMD_VERSION}")
420+
message(" NEP = ${ABACUS_NEP_VERSION}")
421+
message(" Features : Libxc = ${ABACUS_LIBXC_VERSION}")
422+
message(" LibRI = ${ABACUS_LIBRI_VERSION}")
423+
if(ENABLE_LIBRI)
424+
message(" EXX-dev = ${ABACUS_EXX_DEV}")
425+
endif()
426+
message(" PEXSI = ${ABACUS_PEXSI_VERSION}")
407427
message(" ===================================================================")

0 commit comments

Comments
 (0)