Similar to Gather<(Of <(T>)>)(T, Int32) but here all values are aggregated into one large array.
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public T[] GatherFlattened<T>( T[] inValues, int root ) |
| Visual Basic (Declaration) |
|---|
Public Function GatherFlattened(Of T) ( _ inValues As T(), _ root As Integer _ ) As T() |
| Visual C++ |
|---|
public: generic<typename T> array<T>^ GatherFlattened( array<T>^ inValues, int root ) |
Parameters
- inValues
- Type: array<
T
>[]()[]
The values to be contributed by this process.
- root
- Type: System..::.Int32
The rank of the root node.
Type Parameters
- T
- Any serializable type.