We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1ac47d commit 9303cb6Copy full SHA for 9303cb6
README.md
@@ -58,8 +58,9 @@ To execute code with MPI calls on all workers, use `@mpi_do`.
58
For example:
59
```
60
@mpi_do manager begin
61
+ using MPI
62
comm=MPI.COMM_WORLD
- println("Hello world, I am $(MPI.Comm_rank(comm)) of $(MPI.Comm_size(comm))"))
63
+ println("Hello world, I am $(MPI.Comm_rank(comm)) of $(MPI.Comm_size(comm))")
64
end
65
66
executes on all MPI workers belonging to `manager` only
0 commit comments