[This is preliminary documentation and is subject to change.]
A reduction operation that combines two values to produce a third value.
Used by various collectives operations such as
Allreduce<(Of <(T>)>)(T, ReductionOperation<(Of <(T>)>)).
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 0.8.0.0 (0.8.0.0)
Syntax
| C# |
|---|
public delegate T ReductionOperation<T>( T x, T y ) |
| Visual Basic (Declaration) |
|---|
Public Delegate Function ReductionOperation(Of T) ( _ x As T, _ y As T _ ) As T |
| Visual C++ |
|---|
generic<typename T> public delegate T ReductionOperation( T x, T y ) |
Parameters
- x
- Type: T
- y
- Type: T
Type Parameters
- T