GraphXlaDynamicSlice Method |
https://www.emgu.com/wiki/index.php/Emgu_TF
Wraps the XLA DynamicSlice operator, documented at
Namespace:
Emgu.TF
Assembly:
Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntaxpublic Operation XlaDynamicSlice(
Output input,
Output start_indices,
Output size_indices,
string opName = "XlaDynamicSlice"
)
Public Function XlaDynamicSlice (
input As Output,
start_indices As Output,
size_indices As Output,
Optional opName As String = "XlaDynamicSlice"
) As Operation
public:
Operation^ XlaDynamicSlice(
Output^ input,
Output^ start_indices,
Output^ size_indices,
String^ opName = L"XlaDynamicSlice"
)
member XlaDynamicSlice :
input : Output *
start_indices : Output *
size_indices : Output *
?opName : string
(* Defaults:
let _opName = defaultArg opName "XlaDynamicSlice"
*)
-> Operation
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