Click or drag to resize

GraphXlaSparseDenseMatmul Method

https://www.emgu.com/wiki/index.php/Emgu_TF
XlaSparseDenseMatmul

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation XlaSparseDenseMatmul(
	Output row_ids,
	Output col_ids,
	Output values,
	Output offsets,
	Output embedding_table,
	long max_ids_per_partition,
	long max_unique_ids_per_partition,
	long input_size,
	string opName = "XlaSparseDenseMatmul"
)

Parameters

row_ids
Type: Emgu.TFOutput
Input to the operation.
col_ids
Type: Emgu.TFOutput
Input to the operation.
values
Type: Emgu.TFOutput
Input to the operation.
offsets
Type: Emgu.TFOutput
Input to the operation.
embedding_table
Type: Emgu.TFOutput
Input to the operation.
max_ids_per_partition
Type: SystemInt64
max ids per partition
max_unique_ids_per_partition
Type: SystemInt64
max unique ids per partition
input_size
Type: SystemInt64
input size
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] activations(type: DtFloat). [1] row_pointers(type: DtInt32). [2] sorted_embedding_ids(type: DtInt32). [3] sorted_sample_ids(type: DtInt32). [4] sorted_gains(type: DtFloat).
See Also