| Icon | Member | Description |
|---|---|---|
| Reduce<(Of <(T>)>)(Int32, T, ReductionOperation<(Of <(T>)>)) |
Reduces data from all ranks down to a single data variable that is sent to the root.
The reduction is a binary tree reduction - each node reduces itself with it's children,
and then sends its result to its parent, finally reaching the root
| |
| Reduce<(Of <(T>)>)(Int32, T, ReductionOperation<(Of <(T>)>), TimeSpan) |
Reduces data from all ranks down to a single data variable that is sent to the root.
The reduction is a binary tree reduction - each node reduces itself with it's children,
and then sends its result to its parent, finally reaching the root
| |
| Reduce<(Of <(T>)>)(Int32, array<T>[]()[], ReductionOperation<(Of <(T>)>)) |
Reduces each element in the data aray from all ranks down to a single array that is sent to the root.
The reduction is a binary tree reduction - each node reduces itself with it's children,
and then sends its result to its parent, finally reaching the root. Elements within the same array
are not reduced together, but rather elements at the same index in the different arrays are reduced.
| |
| Reduce<(Of <(T>)>)(Int32, array<T>[]()[], ReductionOperation<(Of <(T>)>), TimeSpan) |
Reduces each element in the data aray from all ranks down to a single array that is sent to the root.
The reduction is a binary tree reduction - each node reduces itself with it's children,
and then sends its result to its parent, finally reaching the root. Elements within the same array
are not reduced together, but rather elements at the same index in the different arrays are reduced.
|