initial local+remote spmv

This commit is contained in:
Carl William Pearson
2021-06-11 13:09:50 -06:00
parent aae7176823
commit fb88da915d
10 changed files with 1151 additions and 0 deletions

View File

@@ -97,3 +97,12 @@ if (MPI_FOUND)
set_cxx_standard(main)
endif()
if (MPI_FOUND)
add_executable(overlap overlap.cu)
target_include_directories(overlap PRIVATE SYSTEM ${MPI_CXX_INCLUDE_DIRS})
target_link_libraries(overlap ${MPI_CXX_LIBRARIES})
target_link_libraries(overlap CUDA::nvToolsExt)
set_cxx_options(overlap)
set_cxx_standard(overlap)
endif()