[This is preliminary documentation and is subject to change.]
Broadcast a value from the root process to all other processes.
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 0.6.0.0 (0.6.0.0)
Syntax
| C# |
|---|
public void Broadcast<T>( ref T value, int root ) |
| Visual Basic (Declaration) |
|---|
Public Sub Broadcast(Of T) ( _ ByRef value As T, _ root As Integer _ ) |
| Visual C++ |
|---|
public: generic<typename T> void Broadcast( T% value, int root ) |
Parameters
- value
- Type:
T
%
The value to be broadcast. At the root process, this value is read (but not written); at all other processes, this value will be replaced with the value at the root.
- root
- Type: System..::.Int32
The rank of the process that is broadcasting the value out to all of the non-root processes.
Type Parameters
- T
- Any serializable type.