Table of Contents

Enum ReductionOperation

Namespace
AiDotNet.DistributedTraining
Assembly
AiDotNet.dll

Defines the supported reduction operations for collective communication.

public enum ReductionOperation

Fields

Average = 4

Compute average (sum divided by count)

Max = 3

Take the maximum value

Min = 2

Take the minimum value

Product = 1

Multiply all values together

Sum = 0

Add all values together

Remarks

For Beginners: These are different ways to combine values from multiple processes.