Skip to content

Commit 5d6fae8

Browse files
authored
remove references to deprecated collectives (#442)
1 parent d048adc commit 5d6fae8

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

docs/src/collective.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@ MPI.bcast
1818
### Gather
1919

2020
```@docs
21-
MPI.Allgather!
22-
MPI.Allgather
23-
MPI.Allgatherv!
24-
MPI.Allgatherv
2521
MPI.Gather!
2622
MPI.Gather
2723
MPI.Gatherv!
28-
MPI.Gatherv
24+
MPI.Allgather!
25+
MPI.Allgather
26+
MPI.Allgatherv!
2927
```
3028

3129
### Scatter

src/collective.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ processes.
231231
232232
# See also
233233
- [`Gather!`](@ref) for the mutating operation.
234-
- [`Gatherv!`](@ref)/[`Gatherv`](@ref) if the number of elements varies between processes.
234+
- [`Gatherv!`](@ref) if the number of elements varies between processes.
235235
- [`Allgather!`](@ref)/[`Allgather`](@ref) to send the result to all processes.
236236
237237
# External links
@@ -268,7 +268,7 @@ can be `nothing`.
268268
# See also
269269
- [`Gatherv`](@ref) for the allocating operation
270270
- [`Gather!`](@ref)
271-
- [`Allgatherv!`](@ref)/[`Allgatherv`](@ref) to send the result to all processes
271+
- [`Allgatherv!`](@ref) to send the result to all processes
272272
273273
# External links
274274
$(_doc_external("MPI_Gatherv"))
@@ -311,7 +311,7 @@ assumed to be in the area where it would receive its own contribution.
311311
312312
# See also
313313
- [`Allgather`](@ref) for the allocating operation
314-
- [`Allgatherv!`](@ref)/[`Allgatherv`](@ref) if the number of elements varies between processes.
314+
- [`Allgatherv!`](@ref) if the number of elements varies between processes.
315315
- [`Gather!`](@ref) to send only to a single root process
316316
317317
# External links
@@ -353,7 +353,7 @@ processes.
353353
354354
# See also
355355
- [`Allgather!`](@ref) for the mutating operation
356-
- [`Allgatherv!`](@ref)/[`Allgatherv`](@ref) if the number of elements varies between processes.
356+
- [`Allgatherv!`](@ref) if the number of elements varies between processes.
357357
- [`Gather!`](@ref) to send only to a single root process
358358
359359
# External links
@@ -382,7 +382,7 @@ is taken from the interval of `recvbuf` where it would store its own data.
382382
383383
# See also
384384
- [`Allgatherv`](@ref) for the allocating operation
385-
- [`Gatherv!`](@ref)/[`Gatherv`](@ref) to send the result to a single process
385+
- [`Gatherv!`](@ref) to send the result to a single process
386386
387387
# External links
388388
$(_doc_external("MPI_Allgatherv"))

0 commit comments

Comments
 (0)