Gathers invididual values provided by each processor into an array of values.
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public T[] AllgatherFlattened<T>( T[] inValues, int[] counts ) |
| Visual Basic (Declaration) |
|---|
Public Function AllgatherFlattened(Of T) ( _ inValues As T(), _ counts As Integer() _ ) As T() |
| Visual C++ |
|---|
public: generic<typename T> array<T>^ AllgatherFlattened( array<T>^ inValues, array<int>^ counts ) |
Parameters
- inValues
- Type: array<
T
>[]()[]
The values supplied by this processor.
- counts
- Type: array<
System..::.Int32
>[]()[]
The numbers of items to be received by each process.
Type Parameters
- T
- Any serializable type.