forked from lijiext/lammps
cmake: add GPU into to summary
This commit is contained in:
parent
6336c3b975
commit
843f89fc92
|
@ -809,3 +809,11 @@ message(STATUS "Link libraries: ${LAMMPS_LINK_LIBS}")
|
|||
if(BUILD_MPI)
|
||||
message(STATUS "Using mpi with headers in ${MPI_C_INCLUDE_PATH} and ${MPI_CXX_LIBRARIES}")
|
||||
endif()
|
||||
if(ENABLED_GPU)
|
||||
message(STATUS "GPU Api: ${GPU_API}")
|
||||
if(GPU_API STREQUAL "CUDA")
|
||||
message(STATUS "GPU Arch: ${GPU_ARCH}")
|
||||
elseif(GPU_API STREQUAL "OpenCL")
|
||||
message(STATUS "OCL Tune: ${OCL_TUNE}")
|
||||
endif()
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue