Click or drag to resize

GraphXlaGather Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaGather(
	Output operand,
	Output start_indices,
	Output slice_sizes,
	string dimension_numbers,
	bool indices_are_sorted,
	string opName = "XlaGather"
)

Parameters

operand
Type: Emgu.TFOutput
Input to the operation: The array we're gathering from.
start_indices
Type: Emgu.TFOutput
Input to the operation: Array containing the starting indices of the slices we gather.
slice_sizes
Type: Emgu.TFOutput
Input to the operation: slice_sizes[i] is the bounds for the slice on dimension i.
dimension_numbers
Type: SystemString
A serialized xla::GatherDimensionNumbers proto.
indices_are_sorted
Type: SystemBoolean
Boolean indicating if the indices are sorted.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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