Click or drag to resize

GraphXlaBroadcastHelper Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Helper operator for performing XLA-style broadcasts

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaBroadcastHelper(
	Output lhs,
	Output rhs,
	Output broadcast_dims,
	string opName = "XlaBroadcastHelper"
)

Parameters

lhs
Type: Emgu.TFOutput
Input to the operation: the LHS input tensor
rhs
Type: Emgu.TFOutput
Input to the operation: the RHS input tensor
broadcast_dims
Type: Emgu.TFOutput
Input to the operation: an XLA-style broadcast dimension specification
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] lhs_output(type: DtInvalid): the broadcasted LHS tensor [1] rhs_output(type: DtInvalid): the broadcasted RHS tensor
See Also