Add WindowIO and MPIWindowIOManager #203
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The objective of this PR is to get some better cooperation between the Julia parallel processing system and MPI.
WindowIO
allows point-to-point communication between MPI processes using a JuliaIO
. Brief excerpt from the test:MPIWindowIOManager
sets up a cluster manager to use theWindowIO
buffer as communication layer. It adds two modes forstart_main_loop
:MPI_WINDOW_IO
: Normal cluster manager, with the workers only waiting on the process_events loop and all commands only executed on masterMPI_WINDOW_NOWAIT
: The cluster manager is initialized, but workers don't process events and instead run in SPMD MPI fashion as usual. If a Julia parallel call is needed, it must be prefixed with the@cluster
macro to activate the event loops on the workers. All code in the@cluster
block then only runs on the master and can contain normal Julia parallel programming calls. After the block ends, SPMD mode is resumed.