Click or drag to resize

GraphXlaDynamicUpdateSlice Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaDynamicUpdateSlice(
	Output input,
	Output update,
	Output indices,
	string opName = "XlaDynamicUpdateSlice"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation: A `Tensor` of type T.
update
Type: Emgu.TFOutput
Input to the operation: A `Tensor` of type T. Same rank as `input`.
indices
Type: Emgu.TFOutput
Input to the operation: A vector of indices into `input`. Must have length equal to the rank of `input`.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid): A `Tensor` of type T.
See Also