works on one processor

This commit is contained in:
2020-02-29 13:37:48 -07:00
parent a3b893f971
commit 4cc4ae4afd
54 changed files with 3417 additions and 5 deletions

10
untitled/CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.15)
project(untitled)
find_package(MPI REQUIRED)
add_definitions(-DOMPI_SKIP_MPICXX)
set(CMAKE_CXX_STANDARD 17)
add_executable(main main.cpp)
target_link_libraries(main PRIVATE MPI::MPI_C)