Enum ReductionOperation
- Namespace
- AiDotNet.DistributedTraining
- Assembly
- AiDotNet.dll
Defines the supported reduction operations for collective communication.
public enum ReductionOperation
Fields
Average = 4Compute average (sum divided by count)
Max = 3Take the maximum value
Min = 2Take the minimum value
Product = 1Multiply all values together
Sum = 0Add all values together
Remarks
For Beginners: These are different ways to combine values from multiple processes.