Each host sends data and receives an array of data from all hosts
| C# | Visual Basic | Visual C++ |
public virtual void AllGather<T>( T send, T[] data )
Public Overridable Sub AllGather(Of T) ( _ send As T, _ data As T() _ )
public: generic<typename T> virtual void AllGather( T send, array<T>^ data )
- T
- type of data to gather
- send (T)
- data to be sent to hosts
- data (array<T>[]()[])
- array to receive data from other hosts
void