Class RunGraphRequest

  • All Implemented Interfaces:
    com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, java.io.Serializable, RunGraphRequestOrBuilder

    public final class RunGraphRequest
    extends com.google.protobuf.GeneratedMessageV3
    implements RunGraphRequestOrBuilder
    Protobuf type org.platanios.tensorflow.proto.RunGraphRequest
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  RunGraphRequest.Builder
      Protobuf type org.platanios.tensorflow.proto.RunGraphRequest
      • Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
      • Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
    • Field Detail

      • SESSION_HANDLE_FIELD_NUMBER

        public static final int SESSION_HANDLE_FIELD_NUMBER
        See Also:
        Constant Field Values
      • CREATE_WORKER_SESSION_CALLED_FIELD_NUMBER

        public static final int CREATE_WORKER_SESSION_CALLED_FIELD_NUMBER
        See Also:
        Constant Field Values
      • GRAPH_HANDLE_FIELD_NUMBER

        public static final int GRAPH_HANDLE_FIELD_NUMBER
        See Also:
        Constant Field Values
      • IS_PARTIAL_FIELD_NUMBER

        public static final int IS_PARTIAL_FIELD_NUMBER
        See Also:
        Constant Field Values
      • IS_LAST_PARTIAL_RUN_FIELD_NUMBER

        public static final int IS_LAST_PARTIAL_RUN_FIELD_NUMBER
        See Also:
        Constant Field Values
      • STORE_ERRORS_IN_RESPONSE_BODY_FIELD_NUMBER

        public static final int STORE_ERRORS_IN_RESPONSE_BODY_FIELD_NUMBER
        See Also:
        Constant Field Values
      • REQUEST_ID_FIELD_NUMBER

        public static final int REQUEST_ID_FIELD_NUMBER
        See Also:
        Constant Field Values
    • Method Detail

      • newInstance

        protected java.lang.Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        Overrides:
        newInstance in class com.google.protobuf.GeneratedMessageV3
      • getUnknownFields

        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        Specified by:
        getUnknownFields in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      • getSessionHandle

        public java.lang.String getSessionHandle()
         session_handle is the master-generated unique id for this session.
         If session_handle is non-empty, it must be the same as used when
         registering the graph. If it is empty, a single global namespace is used to
         search for the graph_handle.
         
        string session_handle = 8;
        Specified by:
        getSessionHandle in interface RunGraphRequestOrBuilder
        Returns:
        The sessionHandle.
      • getSessionHandleBytes

        public com.google.protobuf.ByteString getSessionHandleBytes()
         session_handle is the master-generated unique id for this session.
         If session_handle is non-empty, it must be the same as used when
         registering the graph. If it is empty, a single global namespace is used to
         search for the graph_handle.
         
        string session_handle = 8;
        Specified by:
        getSessionHandleBytes in interface RunGraphRequestOrBuilder
        Returns:
        The bytes for sessionHandle.
      • getCreateWorkerSessionCalled

        public boolean getCreateWorkerSessionCalled()
         Set to true if `CreateWorkerSession` was called for `session_handle`.
         
        bool create_worker_session_called = 10;
        Specified by:
        getCreateWorkerSessionCalled in interface RunGraphRequestOrBuilder
        Returns:
        The createWorkerSessionCalled.
      • getGraphHandle

        public java.lang.String getGraphHandle()
         REQUIRED: graph_handle must be returned by a RegisterGraph call
         to the same WorkerService.
         
        string graph_handle = 1;
        Specified by:
        getGraphHandle in interface RunGraphRequestOrBuilder
        Returns:
        The graphHandle.
      • getGraphHandleBytes

        public com.google.protobuf.ByteString getGraphHandleBytes()
         REQUIRED: graph_handle must be returned by a RegisterGraph call
         to the same WorkerService.
         
        string graph_handle = 1;
        Specified by:
        getGraphHandleBytes in interface RunGraphRequestOrBuilder
        Returns:
        The bytes for graphHandle.
      • getStepId

        public long getStepId()
         A unique ID to distinguish different runs of the same graph.
         The master generates a global unique `step_id` to distinguish
         different runs of the graph computation. Subgraphs communicate
         (e.g., send/recv ops) with each other using `step_id` to
         distinguish tensors generated by different runs.
         
        int64 step_id = 2;
        Specified by:
        getStepId in interface RunGraphRequestOrBuilder
        Returns:
        The stepId.
      • hasExecOpts

        public boolean hasExecOpts()
         Options for this step.
         
        .org.platanios.tensorflow.proto.ExecutorOpts exec_opts = 5;
        Specified by:
        hasExecOpts in interface RunGraphRequestOrBuilder
        Returns:
        Whether the execOpts field is set.
      • getSendList

        public java.util.List<NamedTensorProto> getSendList()
         Runs the graph.
         Sends the tensors in "send" into the graph before the run and
         fetches the keys into `RunGraphResponse.recv` after the run.
         
        repeated .org.platanios.tensorflow.proto.NamedTensorProto send = 3;
        Specified by:
        getSendList in interface RunGraphRequestOrBuilder
      • getSendOrBuilderList

        public java.util.List<? extends NamedTensorProtoOrBuilder> getSendOrBuilderList()
         Runs the graph.
         Sends the tensors in "send" into the graph before the run and
         fetches the keys into `RunGraphResponse.recv` after the run.
         
        repeated .org.platanios.tensorflow.proto.NamedTensorProto send = 3;
        Specified by:
        getSendOrBuilderList in interface RunGraphRequestOrBuilder
      • getSendCount

        public int getSendCount()
         Runs the graph.
         Sends the tensors in "send" into the graph before the run and
         fetches the keys into `RunGraphResponse.recv` after the run.
         
        repeated .org.platanios.tensorflow.proto.NamedTensorProto send = 3;
        Specified by:
        getSendCount in interface RunGraphRequestOrBuilder
      • getSend

        public NamedTensorProto getSend​(int index)
         Runs the graph.
         Sends the tensors in "send" into the graph before the run and
         fetches the keys into `RunGraphResponse.recv` after the run.
         
        repeated .org.platanios.tensorflow.proto.NamedTensorProto send = 3;
        Specified by:
        getSend in interface RunGraphRequestOrBuilder
      • getSendOrBuilder

        public NamedTensorProtoOrBuilder getSendOrBuilder​(int index)
         Runs the graph.
         Sends the tensors in "send" into the graph before the run and
         fetches the keys into `RunGraphResponse.recv` after the run.
         
        repeated .org.platanios.tensorflow.proto.NamedTensorProto send = 3;
        Specified by:
        getSendOrBuilder in interface RunGraphRequestOrBuilder
      • getRecvKeyList

        public com.google.protobuf.ProtocolStringList getRecvKeyList()
        repeated string recv_key = 4;
        Specified by:
        getRecvKeyList in interface RunGraphRequestOrBuilder
        Returns:
        A list containing the recvKey.
      • getRecvKey

        public java.lang.String getRecvKey​(int index)
        repeated string recv_key = 4;
        Specified by:
        getRecvKey in interface RunGraphRequestOrBuilder
        Parameters:
        index - The index of the element to return.
        Returns:
        The recvKey at the given index.
      • getRecvKeyBytes

        public com.google.protobuf.ByteString getRecvKeyBytes​(int index)
        repeated string recv_key = 4;
        Specified by:
        getRecvKeyBytes in interface RunGraphRequestOrBuilder
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the recvKey at the given index.
      • getIsPartial

        public boolean getIsPartial()
         True if the RunGraphRequest is a partial run request.
         
        bool is_partial = 6;
        Specified by:
        getIsPartial in interface RunGraphRequestOrBuilder
        Returns:
        The isPartial.
      • getIsLastPartialRun

        public boolean getIsLastPartialRun()
         True if this is the last partial run request in a sequence of requests.
         
        bool is_last_partial_run = 7;
        Specified by:
        getIsLastPartialRun in interface RunGraphRequestOrBuilder
        Returns:
        The isLastPartialRun.
      • getStoreErrorsInResponseBody

        public boolean getStoreErrorsInResponseBody()
         If true then some errors, e.g., execution errors that have long
         error messages, may return an OK RunGraphResponse with the actual
         error saved in the status_code/status_error_message fields of the
         response body. This is a workaround since the RPC subsystem may
         truncate long metadata messages.
         
        bool store_errors_in_response_body = 9;
        Specified by:
        getStoreErrorsInResponseBody in interface RunGraphRequestOrBuilder
        Returns:
        The storeErrorsInResponseBody.
      • getRequestId

        public long getRequestId()
         Unique identifier for this request. Every RunGraphRequest must have a
         unique request_id, and retried RunGraphRequests must have the same
         request_id. If request_id is zero, retry detection is disabled.
         Retried RunGraphRequests are problematic because they may issue a
         RecvTensor that will have no corresponding sender and will wait forever.
         Workers use request_ids to reject retried RunGraph requests instead of
         waiting forever.
         
        int64 request_id = 11;
        Specified by:
        getRequestId in interface RunGraphRequestOrBuilder
        Returns:
        The requestId.
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3
      • writeTo

        public void writeTo​(com.google.protobuf.CodedOutputStream output)
                     throws java.io.IOException
        Specified by:
        writeTo in interface com.google.protobuf.MessageLite
        Overrides:
        writeTo in class com.google.protobuf.GeneratedMessageV3
        Throws:
        java.io.IOException
      • getSerializedSize

        public int getSerializedSize()
        Specified by:
        getSerializedSize in interface com.google.protobuf.MessageLite
        Overrides:
        getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      • equals

        public boolean equals​(java.lang.Object obj)
        Specified by:
        equals in interface com.google.protobuf.Message
        Overrides:
        equals in class com.google.protobuf.AbstractMessage
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface com.google.protobuf.Message
        Overrides:
        hashCode in class com.google.protobuf.AbstractMessage
      • parseFrom

        public static RunGraphRequest parseFrom​(java.nio.ByteBuffer data)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static RunGraphRequest parseFrom​(java.nio.ByteBuffer data,
                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static RunGraphRequest parseFrom​(com.google.protobuf.ByteString data)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static RunGraphRequest parseFrom​(com.google.protobuf.ByteString data,
                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static RunGraphRequest parseFrom​(byte[] data)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static RunGraphRequest parseFrom​(byte[] data,
                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                         throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static RunGraphRequest parseFrom​(java.io.InputStream input)
                                         throws java.io.IOException
        Throws:
        java.io.IOException
      • parseFrom

        public static RunGraphRequest parseFrom​(java.io.InputStream input,
                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                         throws java.io.IOException
        Throws:
        java.io.IOException
      • parseDelimitedFrom

        public static RunGraphRequest parseDelimitedFrom​(java.io.InputStream input)
                                                  throws java.io.IOException
        Throws:
        java.io.IOException
      • parseDelimitedFrom

        public static RunGraphRequest parseDelimitedFrom​(java.io.InputStream input,
                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                                  throws java.io.IOException
        Throws:
        java.io.IOException
      • parseFrom

        public static RunGraphRequest parseFrom​(com.google.protobuf.CodedInputStream input)
                                         throws java.io.IOException
        Throws:
        java.io.IOException
      • parseFrom

        public static RunGraphRequest parseFrom​(com.google.protobuf.CodedInputStream input,
                                                com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                         throws java.io.IOException
        Throws:
        java.io.IOException
      • newBuilderForType

        public RunGraphRequest.Builder newBuilderForType()
        Specified by:
        newBuilderForType in interface com.google.protobuf.Message
        Specified by:
        newBuilderForType in interface com.google.protobuf.MessageLite
      • toBuilder

        public RunGraphRequest.Builder toBuilder()
        Specified by:
        toBuilder in interface com.google.protobuf.Message
        Specified by:
        toBuilder in interface com.google.protobuf.MessageLite
      • newBuilderForType

        protected RunGraphRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
        Specified by:
        newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      • parser

        public static com.google.protobuf.Parser<RunGraphRequest> parser()
      • getParserForType

        public com.google.protobuf.Parser<RunGraphRequest> getParserForType()
        Specified by:
        getParserForType in interface com.google.protobuf.Message
        Specified by:
        getParserForType in interface com.google.protobuf.MessageLite
        Overrides:
        getParserForType in class com.google.protobuf.GeneratedMessageV3
      • getDefaultInstanceForType

        public RunGraphRequest getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder