Click or drag to resize

GraphXlaRecv Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Receives the named tensor from another XLA computation. Wraps the XLA Recv

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaRecv(
	DataType dtype,
	string tensor_name,
	long[] shape,
	string opName = "XlaRecv"
)

Parameters

dtype
Type: Emgu.TFDataType
The type of the tensor.
tensor_name
Type: SystemString
A string key that identifies the channel.
shape
Type: SystemInt64
The shape of the tensor.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] tensor(type: DtInvalid): The tensor to receive.
See Also