Overload List
| Name | Description | |
|---|---|---|
| Scatter<(Of <(T>)>)()()() |
Scatters an array of values by sending the ith value of the array to processor i.
This variant of Scatter can only be called by a non-root process in the root group.
The root process should either call the root-only variant of Scatter<(Of <(T>)>)(array<T>[]()[]).
Leaf group processes should call Scatter<(Of <(T>)>)(Int32) | |
| Scatter<(Of <(T>)>)(Int32) |
Scatters an array of values by sending the ith value of the array to processor i.
This variant of Scatter can only be called by a leaf group process. The root process
should call the root-only variant of Scatter<(Of <(T>)>)(array<T>[]()[]). Other
root group processes should call Scatter<(Of <(T>)>)()()() | |
| Scatter<(Of <(T>)>)(array<T>[]()[]) |
Scatters an array of values by sending the ith value of the array to processor i of the other group.
This variant of Scatter can only be called by the root process. Other processes
should call the non-root variant of Scatter<(Of <(T>)>)(Int32).
|