Click or drag to resize

GraphXlaDot Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Wraps the XLA DotGeneral operator, documented at

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

Parameters

lhs
Type: Emgu.TFOutput
Input to the operation: the LHS tensor
rhs
Type: Emgu.TFOutput
Input to the operation: the RHS tensor
dimension_numbers
Type: SystemString
a serialized xla::DotDimensionNumbers proto.
precision_config
Type: SystemString
a serialized xla::PrecisionConfig proto.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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