Click or drag to resize

GraphXlaDynamicSlice Method

http://www.emgu.com
Wraps the XLA DynamicSlice operator, documented at

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.4.1.1202
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

[Missing <returns> documentation for "M:Emgu.TF.Graph.XlaDynamicSlice(Emgu.TF.Output,Emgu.TF.Output,Emgu.TF.Output,System.String)"]

See Also