Skip to content
Snippets Groups Projects

[GPU] use shared Communicator and remove MPI dependency from VirtualFluids_GPU. Renamed mpi module to parallel

Merged Sören Peters requested to merge soe.peters/VirtualFluids:feature/parallel into develop
All threads resolved!
Files
7
project(VirtualFluids_GPU LANGUAGES CUDA CXX)
set(additional_libraries "")
if(MSVC)
set(additional_libraries ws2_32 Traffic) # ws_32 throws an error on Phoenix
endif()
vf_add_library(PUBLIC_LINK basics lbm mpi PRIVATE_LINK ${additional_libraries} GridGenerator vf_cuda)
vf_add_library(PUBLIC_LINK basics lbm mpi PRIVATE_LINK GridGenerator vf_cuda)
#SET(TPN_WIN32 "/EHsc")
#https://stackoverflow.com/questions/6832666/lnk2019-when-including-asio-headers-solution-generated-with-cmake
Loading