@Operator public final class RemoteFusedGraphExecute extends PrimitiveOp implements Iterable<Operand<Object>>
The graph specifications(such as graph itself, input tensors and output names) are stored as a serialized protocol buffer of RemoteFusedGraphExecuteInfo as serialized_remote_fused_graph_execute_info. The specifications will be passed to a dedicated registered remote fused graph executor. The executor will send the graph specifications to a remote processor and execute that graph. The execution results will be passed to consumer nodes as outputs of this node.
operation| Modifier and Type | Method and Description |
|---|---|
static RemoteFusedGraphExecute |
create(Scope scope,
Iterable<Operand<?>> inputs,
List<Class<?>> Toutputs,
String serializedRemoteFusedGraphExecuteInfo)
Factory method to create a class to wrap a new RemoteFusedGraphExecute operation to the graph.
|
Iterator<Operand<Object>> |
iterator() |
List<Output<?>> |
outputs()
Arbitrary number of tensors with arbitrary data types
|
equals, hashCode, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitforEach, spliteratorpublic static RemoteFusedGraphExecute create(Scope scope, Iterable<Operand<?>> inputs, List<Class<?>> Toutputs, String serializedRemoteFusedGraphExecuteInfo)
scope - current graph scopeinputs - Arbitrary number of tensors with arbitrary data typesToutputs - serializedRemoteFusedGraphExecuteInfo - Serialized protocol buffer
of RemoteFusedGraphExecuteInfo which contains graph specifications.Copyright © 2015–2019. All rights reserved.