All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorflow.distruntime.PartialRunSetupRequestOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/protobuf/master.proto

package org.tensorflow.distruntime;

public interface PartialRunSetupRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:tensorflow.PartialRunSetupRequest)
    com.github.os72.protobuf351.MessageOrBuilder {

  /**
   * 
   * REQUIRED: session_handle must be returned by a CreateSession call
   * to the same master service.
   * 
* * string session_handle = 1; */ java.lang.String getSessionHandle(); /** *
   * REQUIRED: session_handle must be returned by a CreateSession call
   * to the same master service.
   * 
* * string session_handle = 1; */ com.github.os72.protobuf351.ByteString getSessionHandleBytes(); /** *
   * Tensors to be fed in future steps.
   * 
* * repeated string feed = 2; */ java.util.List getFeedList(); /** *
   * Tensors to be fed in future steps.
   * 
* * repeated string feed = 2; */ int getFeedCount(); /** *
   * Tensors to be fed in future steps.
   * 
* * repeated string feed = 2; */ java.lang.String getFeed(int index); /** *
   * Tensors to be fed in future steps.
   * 
* * repeated string feed = 2; */ com.github.os72.protobuf351.ByteString getFeedBytes(int index); /** *
   * Fetches. A list of tensor names. The caller expects a tensor to be returned
   * for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
   * RunStepRequests. The order of specified fetches does not change the
   * execution order.
   * 
* * repeated string fetch = 3; */ java.util.List getFetchList(); /** *
   * Fetches. A list of tensor names. The caller expects a tensor to be returned
   * for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
   * RunStepRequests. The order of specified fetches does not change the
   * execution order.
   * 
* * repeated string fetch = 3; */ int getFetchCount(); /** *
   * Fetches. A list of tensor names. The caller expects a tensor to be returned
   * for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
   * RunStepRequests. The order of specified fetches does not change the
   * execution order.
   * 
* * repeated string fetch = 3; */ java.lang.String getFetch(int index); /** *
   * Fetches. A list of tensor names. The caller expects a tensor to be returned
   * for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
   * RunStepRequests. The order of specified fetches does not change the
   * execution order.
   * 
* * repeated string fetch = 3; */ com.github.os72.protobuf351.ByteString getFetchBytes(int index); /** *
   * Target Nodes. A list of node names. The named nodes will be run in future
   * steps, but their outputs will not be fetched.
   * 
* * repeated string target = 4; */ java.util.List getTargetList(); /** *
   * Target Nodes. A list of node names. The named nodes will be run in future
   * steps, but their outputs will not be fetched.
   * 
* * repeated string target = 4; */ int getTargetCount(); /** *
   * Target Nodes. A list of node names. The named nodes will be run in future
   * steps, but their outputs will not be fetched.
   * 
* * repeated string target = 4; */ java.lang.String getTarget(int index); /** *
   * Target Nodes. A list of node names. The named nodes will be run in future
   * steps, but their outputs will not be fetched.
   * 
* * repeated string target = 4; */ com.github.os72.protobuf351.ByteString getTargetBytes(int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy