Scatter a one dimensional array to all processes, where multiple items are sent to each process.
(If the number of items to be sent is different, see
ScatterFromFlattened<(Of <(T>)>)(array<T>[]()[], array<Int32>[]()[], Int32, array<T>[]()[]%)
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public T[] ScatterFromFlattened<T>( T[] inValues, int count, int root ) |
| Visual Basic (Declaration) |
|---|
Public Function ScatterFromFlattened(Of T) ( _ inValues As T(), _ count As Integer, _ root As Integer _ ) As T() |
| Visual C++ |
|---|
public: generic<typename T> array<T>^ ScatterFromFlattened( array<T>^ inValues, int count, int root ) |
Parameters
- inValues
- Type: array<
T
>[]()[]
The array to be scattered. Only significant at the root.
- count
- Type: System..::.Int32
The number of items to be received by each process. If T is a value type (primitive or structure) count must be the same at each process (not just at the root). If T must be serialized, count is ignored at processes other than the root.
- root
- Type: System..::.Int32
The rank of the root process.
Type Parameters
- T
- Any serializable type.