forked from lijiext/lammps
display more info about the GPU package setting in the CMake config summary
This commit is contained in:
parent
3d5897c926
commit
8d10f35acb
|
@ -800,9 +800,12 @@ if(BUILD_MPI)
|
|||
endif()
|
||||
if(PKG_GPU)
|
||||
message(STATUS "<<< GPU package settings >>>
|
||||
-- GPU API: ${GPU_API}")
|
||||
-- GPU API: ${GPU_API}")
|
||||
if(GPU_API STREQUAL "CUDA")
|
||||
message(STATUS "CUDA Compiler: ${CUDA_NVCC_EXECUTABLE}")
|
||||
message(STATUS "GPU default architecture: ${GPU_ARCH}")
|
||||
message(STATUS "GPU binning with CUDPP: ${CUDPP_OPT}")
|
||||
message(STATUS "CUDA MPS support: ${CUDA_MPS_SUPPORT}")
|
||||
elseif(GPU_API STREQUAL "HIP")
|
||||
message(STATUS "HIP platform: ${HIP_PLATFORM}")
|
||||
message(STATUS "HIP architecture: ${HIP_ARCH}")
|
||||
|
@ -812,7 +815,7 @@ if(PKG_GPU)
|
|||
message(STATUS "HIP GPU sorting: off")
|
||||
endif()
|
||||
endif()
|
||||
message(STATUS "GPU precision: ${GPU_PREC}")
|
||||
message(STATUS "GPU precision: ${GPU_PREC}")
|
||||
endif()
|
||||
if(PKG_KOKKOS)
|
||||
message(STATUS "Kokkos Arch: ${KOKKOS_ARCH}")
|
||||
|
|
Loading…
Reference in New Issue