Click or drag to resize

GraphXlaDynamicSlice Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaDynamicSlice(
	Output input,
	Output start_indices,
	Output size_indices,
	string opName = "XlaDynamicSlice"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation: A `Tensor` of type T.
start_indices
Type: Emgu.TFOutput
Input to the operation: List of N integers containing the slice size for each dimension. Each value must be strictly greater than zero, and start + size must be less than or equal to the size of the dimension to avoid implementation defined behavior.
size_indices
Type: Emgu.TFOutput
Input to the operation.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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