@@ -783,7 +783,7 @@ Allreduce(obj::T, op, comm::Comm) where {T} =
783
783
Scan!(sendrecvbuf, op, comm::Comm)
784
784
785
785
Inclusive prefix reduction (analagous to `accumulate` in Julia): `recvbuf` on rank `i`
786
- will contain the the result of reducing `sendbuf` by `op` from ranks `0:i`.
786
+ will contain the result of reducing `sendbuf` by `op` from ranks `0:i`.
787
787
788
788
If only a single buffer `sendrecvbuf` is provided, then operations will be performed
789
789
in-place.
@@ -814,7 +814,7 @@ Scan!(buf, op, comm::Comm) =
814
814
recvbuf = Scan(sendbuf, op, comm::Comm)
815
815
816
816
Inclusive prefix reduction (analagous to `accumulate` in Julia): `recvbuf` on rank `i`
817
- will contain the the result of reducing `sendbuf` by `op` from ranks `0:i`.
817
+ will contain the result of reducing `sendbuf` by `op` from ranks `0:i`.
818
818
819
819
`sendbuf` can also be a scalar, in which case `recvbuf` will also be a scalar of the same
820
820
type.
@@ -838,7 +838,7 @@ Scan(object::T, op, comm::Comm) where {T} = Scan!(Ref(object), Ref{T}(), op, com
838
838
Exscan!(sendrecvbuf, op, comm::Comm)
839
839
840
840
Exclusive prefix reduction (analagous to `accumulate` in Julia): `recvbuf` on rank `i`
841
- will contain the the result of reducing `sendbuf` by `op` from ranks `0:i-1`. The
841
+ will contain the result of reducing `sendbuf` by `op` from ranks `0:i-1`. The
842
842
`recvbuf` on rank `0` is ignored, and the `recvbuf` on rank `1` will contain the contents
843
843
of `sendbuf` on rank `0`.
844
844
@@ -870,7 +870,7 @@ Exscan!(buf, op, comm::Comm) = Exscan!(IN_PLACE, buf, op, comm)
870
870
recvbuf = Exscan(sendbuf, op, comm::Comm)
871
871
872
872
Exclusive prefix reduction (analagous to `accumulate` in Julia): `recvbuf` on rank `i`
873
- will contain the the result of reducing `sendbuf` by `op` from ranks `0:i-1`. The
873
+ will contain the result of reducing `sendbuf` by `op` from ranks `0:i-1`. The
874
874
`recvbuf` on rank `0` is undefined, and the `recvbuf` on rank `1` will contain the contents
875
875
of `sendbuf` on rank `0`.
876
876
0 commit comments