MPI_COMM_GRID cleanup
#427
Draft
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.
This PR is meant to carry forward what we decided in #372. Specifically, we will stop fixing the issue #364, and instead, provide a script for user to help with determining the number of MPI processes needed to run the simulation. In case a user provides more MPI slots than needed, the code will produce an error and direct the user to relevant info on selecting the correct number of MPI slots. With these changes, there will be no need for
MPI_COMM_GRIDasMPI_COMM_GRID.COMM_OBS_GRIDwill always point toMPI.COMM_WORLD. So in this PR we will:MPI_COMM_GRIDand update the code accordinglyThe script for determining the correct number of MPI slots will be implemented in a separate PR.