public final class
Send
Sends the named tensor from send_device to recv_device.
Nested Classes
class | Send.Options | Optional attributes for Send
|
Public Methods
static Send.Options |
clientTerminated(Boolean clientTerminated)
|
static <T> Send |
create(Scope scope, Operand<T> tensor, String tensorName, String sendDevice, Long sendDeviceIncarnation, String recvDevice, Options... options)
Factory method to create a class wrapping a new Send operation.
|
Inherited Methods
Public Methods
public static Send.Options clientTerminated (Boolean clientTerminated)
Parameters
clientTerminated | If set to true, this indicates that the node was added to the graph as a result of a client-side feed or fetch of Tensor data, in which case the corresponding send or recv is expected to be managed locally by the caller. |
---|
public static Send create (Scope scope, Operand<T> tensor, String tensorName, String sendDevice, Long sendDeviceIncarnation, String recvDevice, Options... options)
Factory method to create a class wrapping a new Send operation.
Parameters
scope | current scope |
---|---|
tensor | The tensor to send. |
tensorName | The name of the tensor to send. |
sendDevice | The name of the device sending the tensor. |
sendDeviceIncarnation | The current incarnation of send_device. |
recvDevice | The name of the device receiving the tensor. |
options | carries optional attributes values |
Returns
- a new instance of Send