public final class
Send
Sends the named tensor from send_device to recv_device.
Nested Classes
class | Send.Options | Optional attributes for Send
|
Constants
String | OP_NAME | The name of this op, as known by TensorFlow core engine |
Public Methods
static Send.Options |
clientTerminated(Boolean clientTerminated)
|
static Send |
create(Scope scope, Operand<? extends TType> tensor, String tensorName, String sendDevice, Long sendDeviceIncarnation, String recvDevice, Options... options)
Factory method to create a class wrapping a new Send operation.
|
Inherited Methods
boolean |
equals(Object arg0)
|
final Class<?> |
getClass()
|
int |
hashCode()
|
final void |
notify()
|
final void |
notifyAll()
|
String |
toString()
|
final void |
wait(long arg0, int arg1)
|
final void |
wait(long arg0)
|
final void |
wait()
|
abstract ExecutionEnvironment |
env()
Return the execution environment this op was created in.
|
abstract Operation |
Constants
public static final String OP_NAME
The name of this op, as known by TensorFlow core engine
Constant Value:
"Send"
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<? extends TType> 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