[DEV] MPI submission example, utils.py adjusted for mpi#50
Open
garcs2 wants to merge 2 commits intoIdahoLabResearch:mainfrom
Open
[DEV] MPI submission example, utils.py adjusted for mpi#50garcs2 wants to merge 2 commits intoIdahoLabResearch:mainfrom
garcs2 wants to merge 2 commits intoIdahoLabResearch:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 should now resolve #36, with mpi parallelization now available for depletion. This PR is contingent on this PR, which allows for more than one MPI rank within OpenMC to launch specifically for depletion. Example has been provided on mpi usage within an LTMR example found in
examples/watts_exec_LTMR_mpi, with example submission script for users to see.Importantly, given that
openmc.run()andintegrator.integrate()have fundamental differences in execution, there has to be a decision made on whether MPI is provided for depletion or singular eigenvalue calculations, but not both within the same script. For that reasonopenmc.run()has been commented out since it provides no utility as depletion is ran in every case inclusive of the SD Margin Calc and ITC. Uncommentingopenmc.run()causes the job to crash sinceopenmc.runspawns a subprocess that tries to initialize its own MPI environment which clashes with the parentmpirunprocess in the submisssion script.