Click or drag to resize

GraphXlaVariadicSort Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaVariadicSort(
	Output inputs,
	Output dimension,
	bool is_stable,
	string opName = "XlaVariadicSort"
)

Parameters

inputs
Type: Emgu.TFOutput
Input to the operation: A list of `Tensor` of identical shape but possibly different types.
dimension
Type: Emgu.TFOutput
Input to the operation: The dimension along which to sort. Must be a compile-time constant.
is_stable
Type: SystemBoolean
Whether to use stable sort.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] outputs(type: DtInvalid): A list of `Tensor` of same shape and types as the `input`.
See Also