Click or drag to resize

GraphXlaAllReduce Method

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

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

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.
reduce_op
Type: SystemString
Reduction computation.
mode
Type: SystemString
group mode. CrossReplica: group_assignment contains replica_id. Each group contains the replicas for the current partition. CrossReplicaAndPartition: group_assignment contains replica_id. Each group contains the replicas for all partitions.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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