Skip to content

Commit 826c302

Browse files
committed
fixed type in a comment
1 parent 8682a2e commit 826c302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spawn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def spawn(args, size):
3232
# First use a barrier to interact with parent.barrier() in worker_multiple.py
3333
intercomm.barrier()
3434

35-
# Then use a reduce to show how to pass information back and forth
35+
# Then use a gather to show how to pass information back and forth
3636
intercomm.barrier()
3737
results = intercomm.gather(None, root=MPI.ROOT)
3838
results = {color: data for color, data in results} # Remove duplicate color info

0 commit comments

Comments
 (0)