Skip to content

Commit 73666a5

Browse files
Merge pull request #156 from PrometheusPi/fix_MPI_issue_spock_crusher
fix MPI waitall to run on crusher
2 parents 1c62534 + c67e3b3 commit 73666a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/isaac.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1904,7 +1904,7 @@ namespace isaac
19041904
}
19051905
}
19061906
// wait for all mpi communications to be finished
1907-
MPI_Waitall(mpiRequests.size(), &mpiRequests[0], NULL);
1907+
MPI_Waitall(mpiRequests.size(), &mpiRequests[0], MPI_STATUSES_IGNORE);
19081908

19091909
// sync the received neighbour guard information with the main guards in the texture
19101910
syncNeighbourGuardTextures<T_Acc>(stream, advectionTextureAllocator, neighbourNodeIds);

0 commit comments

Comments
 (0)