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
Syntaxpublic Operation XlaAllReduce(
Output input,
Output group_assignment,
string reduce_op,
string mode,
string opName = "XlaAllReduce"
)
Public Function XlaAllReduce (
input As Output,
group_assignment As Output,
reduce_op As String,
mode As String,
Optional opName As String = "XlaAllReduce"
) As Operation
public:
Operation^ XlaAllReduce(
Output^ input,
Output^ group_assignment,
String^ reduce_op,
String^ mode,
String^ opName = L"XlaAllReduce"
)
member XlaAllReduce :
input : Output *
group_assignment : Output *
reduce_op : string *
mode : string *
?opName : string
(* Defaults:
let _opName = defaultArg opName "XlaAllReduce"
*)
-> Operation
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