Skip to content

Commit 0e6285e

Browse files
committed
mpi: stupid me ...
1 parent 3073420 commit 0e6285e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/source/supercomputers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ There are a few steps one has to complete before using _PFASST++_ on _JUQUEEN_.
4343
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchain_juqueen.cmake \
4444
-DCMAKE_CXX_COMPILER=`which mpig++` -DCMAKE_C_COMPILER=`which mpigcc` \
4545
-DBOOST_ROOT=<INSTALL_PLACE> -Dpfasst_WITH_MPI=ON \
46-
-Dpfasst_BUILD_TESTS=OFF ..
46+
-Dpfasst_BUILD_TESTS=OFF -Dpfasst_BUILD_SHARED_LIBS=OFF ..
4747

4848
5. run make
4949

tests/examples/advection_diffusion/test_mpi_advection_diffusion.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ TEST(AdaptiveErrorTest, MPIPFASST)
6868
int main(int argc, char** argv)
6969
{
7070
testing::InitGoogleTest(&argc, argv);
71+
MPI_Init(&argc, &argv);
7172
pfasst::init(argc, argv,
7273
pfasst::examples::advection_diffusion::AdvectionDiffusionSweeper<>::init_opts,
7374
pfasst::examples::advection_diffusion::AdvectionDiffusionSweeper<>::init_logs);

0 commit comments

Comments
 (0)