Click or drag to resize

GraphXlaReduceScatter Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Wraps the XLA ReduceScatter operator

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.8.0.1418
Syntax
public Operation XlaReduceScatter(
	Output input,
	Output group_assignment,
	Output scatter_dimension,
	string reduce_op,
	string opName = "XlaReduceScatter"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation: Array or a non-empty tuple of arrays to reduce across replicas.
group_assignment
Type: Emgu.TFOutput
Input to the operation: Groups between which the reductions are performed.
scatter_dimension
Type: Emgu.TFOutput
Input to the operation: Dimension to scatter.
reduce_op
Type: SystemString
Reduction computation.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid).
See Also