Skip to content
Snippets Groups Projects
Commit 314a3553 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

MPI relaunch: Allow user to query if MPI relaunch is in progress.

parent 13606efe
No related branches found
No related tags found
No related merge requests found
def run_with_mpi_ranks(py_script, ranks, callable, *args, **kwargs): def in_mpi_relaunch():
import os import os
if "BOOSTMPI_RUN_WITHIN_MPI" in os.environ: return "BOOSTMPI_RUN_WITHIN_MPI" in os.environ
def run_with_mpi_ranks(py_script, ranks, callable, *args, **kwargs):
if in_mpi_relaunch():
callable(*args, **kwargs) callable(*args, **kwargs)
else: else:
import sys import sys, os
newenv = os.environ.copy() newenv = os.environ.copy()
newenv["BOOSTMPI_RUN_WITHIN_MPI"] = "1" newenv["BOOSTMPI_RUN_WITHIN_MPI"] = "1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment