Click or drag to resize

GraphXlaScatter Method

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

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

Parameters

operand
Type: Emgu.TFOutput
Input to the operation: Array to be scattered into.
scatter_indices
Type: Emgu.TFOutput
Input to the operation: Array containing the starting indices of the slices that must be scattered to.
updates
Type: Emgu.TFOutput
Input to the operation: Array containing the values that must be used for scattering.
dimension_numbers
Type: SystemString
A serialized xla::ScatterDimensionNumbers 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