Skip to content

Commit

Permalink
Merge branch 'master' into parsl+flux
Browse files Browse the repository at this point in the history
  • Loading branch information
mercybassey authored Mar 6, 2024
2 parents 2bf4de1 + 864ea4b commit a5fbe78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/userguide/mpi_apps.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Writing MPI-Compatible Apps
++++++++++++++++++++++++++++
In MPI mode, the :class:`~parsl.executors.high_throughput.executor.HighThroughputExecutor` can execute both Python or Bash Apps which invokes the MPI application.
However, it is important to not that Python Apps that directly use ``mpi4py`` is not supported.
However, it is important to note that Python Apps that directly use ``mpi4py`` is not supported.
For multi-node MPI applications, especially when running multiple applications within a single batch job,
it is important to specify the resource requirements for the app so that the Parsl worker can provision
Expand Down
2 changes: 1 addition & 1 deletion parsl/executors/high_throughput/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def __init__(self,
def _warn_deprecated(self, old: str, new: str):
warnings.warn(
f"{old} is deprecated and will be removed in a future release. "
"Please use {new} instead.",
f"Please use {new} instead.",
DeprecationWarning,
stacklevel=2
)
Expand Down

0 comments on commit a5fbe78

Please sign in to comment.