Skip to content

Commit

Permalink
Clarify docstring for MPIExecutor (#3455)
Browse files Browse the repository at this point in the history
As noted in #3423 (comment), the docstring for `MPIExecutor` said `max_workers_per_block` should be less than `nodes_per_block` when in reality it should be less than or equal to.
  • Loading branch information
Andrew-S-Rosen authored May 23, 2024
1 parent 3e59eca commit 23afcb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/executors/high_throughput/mpi_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class MPIExecutor(HighThroughputExecutor):
to spawn multi-node tasks.
Specify the maximum number of multi-node tasks to run at once using ``max_workers_per_block``.
The maximum number should be smaller than the ``nodes_per_block`` in the Provider.
The value should be less than or equal to the ``nodes_per_block`` in the Provider.
Parameters
----------
Expand Down

0 comments on commit 23afcb1

Please sign in to comment.