Click or drag to resize

GraphXlaConvV2 Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaConvV2(
	Output lhs,
	Output rhs,
	Output window_strides,
	Output padding,
	Output lhs_dilation,
	Output rhs_dilation,
	Output feature_group_count,
	string dimension_numbers,
	string precision_config,
	DataType preferred_element_type,
	string opName = "XlaConvV2"
)

Parameters

lhs
Type: Emgu.TFOutput
Input to the operation: the input tensor
rhs
Type: Emgu.TFOutput
Input to the operation: the kernel tensor
window_strides
Type: Emgu.TFOutput
Input to the operation: the inter-window strides
padding
Type: Emgu.TFOutput
Input to the operation: the padding to apply at the start and end of each input dimensions
lhs_dilation
Type: Emgu.TFOutput
Input to the operation: dilation to apply between input elements
rhs_dilation
Type: Emgu.TFOutput
Input to the operation: dilation to apply between kernel elements
feature_group_count
Type: Emgu.TFOutput
Input to the operation: number of feature groups for grouped convolution.
dimension_numbers
Type: SystemString
a serialized xla::ConvolutionDimensionNumbers proto.
precision_config
Type: SystemString
a serialized xla::PrecisionConfig proto.
preferred_element_type
Type: Emgu.TFDataType
The type of the tensor.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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