![JAR search and dependency download from the Maven repository](/logo.png)
org.tensorflow.distruntime.RunCallableRequest Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/master.proto
package org.tensorflow.distruntime;
/**
* Protobuf type {@code tensorflow.RunCallableRequest}
*/
public final class RunCallableRequest extends
org.nd4j.shade.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:tensorflow.RunCallableRequest)
RunCallableRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use RunCallableRequest.newBuilder() to construct.
private RunCallableRequest(org.nd4j.shade.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RunCallableRequest() {
sessionHandle_ = "";
handle_ = 0L;
feed_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final org.nd4j.shade.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private RunCallableRequest(
org.nd4j.shade.protobuf.CodedInputStream input,
org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
org.nd4j.shade.protobuf.UnknownFieldSet.Builder unknownFields =
org.nd4j.shade.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
java.lang.String s = input.readStringRequireUtf8();
sessionHandle_ = s;
break;
}
case 16: {
handle_ = input.readInt64();
break;
}
case 26: {
if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
feed_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000004;
}
feed_.add(
input.readMessage(org.tensorflow.framework.TensorProto.parser(), extensionRegistry));
break;
}
}
}
} catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new org.nd4j.shade.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
feed_ = java.util.Collections.unmodifiableList(feed_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final org.nd4j.shade.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_descriptor;
}
protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.tensorflow.distruntime.RunCallableRequest.class, org.tensorflow.distruntime.RunCallableRequest.Builder.class);
}
private int bitField0_;
public static final int SESSION_HANDLE_FIELD_NUMBER = 1;
private volatile java.lang.Object sessionHandle_;
/**
*
* REQUIRED: session_handle must be returned by a CreateSession call
* to the same master service.
*
*
* string session_handle = 1;
*/
public java.lang.String getSessionHandle() {
java.lang.Object ref = sessionHandle_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
org.nd4j.shade.protobuf.ByteString bs =
(org.nd4j.shade.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sessionHandle_ = s;
return s;
}
}
/**
*
* REQUIRED: session_handle must be returned by a CreateSession call
* to the same master service.
*
*
* string session_handle = 1;
*/
public org.nd4j.shade.protobuf.ByteString
getSessionHandleBytes() {
java.lang.Object ref = sessionHandle_;
if (ref instanceof java.lang.String) {
org.nd4j.shade.protobuf.ByteString b =
org.nd4j.shade.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sessionHandle_ = b;
return b;
} else {
return (org.nd4j.shade.protobuf.ByteString) ref;
}
}
public static final int HANDLE_FIELD_NUMBER = 2;
private long handle_;
/**
*
* REQUIRED: handle must be returned by a MakeCallable call to the same
* master service.
*
*
* int64 handle = 2;
*/
public long getHandle() {
return handle_;
}
public static final int FEED_FIELD_NUMBER = 3;
private java.util.List feed_;
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public java.util.List getFeedList() {
return feed_;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public java.util.List extends org.tensorflow.framework.TensorProtoOrBuilder>
getFeedOrBuilderList() {
return feed_;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public int getFeedCount() {
return feed_.size();
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public org.tensorflow.framework.TensorProto getFeed(int index) {
return feed_.get(index);
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public org.tensorflow.framework.TensorProtoOrBuilder getFeedOrBuilder(
int index) {
return feed_.get(index);
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(org.nd4j.shade.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getSessionHandleBytes().isEmpty()) {
org.nd4j.shade.protobuf.GeneratedMessageV3.writeString(output, 1, sessionHandle_);
}
if (handle_ != 0L) {
output.writeInt64(2, handle_);
}
for (int i = 0; i < feed_.size(); i++) {
output.writeMessage(3, feed_.get(i));
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getSessionHandleBytes().isEmpty()) {
size += org.nd4j.shade.protobuf.GeneratedMessageV3.computeStringSize(1, sessionHandle_);
}
if (handle_ != 0L) {
size += org.nd4j.shade.protobuf.CodedOutputStream
.computeInt64Size(2, handle_);
}
for (int i = 0; i < feed_.size(); i++) {
size += org.nd4j.shade.protobuf.CodedOutputStream
.computeMessageSize(3, feed_.get(i));
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.tensorflow.distruntime.RunCallableRequest)) {
return super.equals(obj);
}
org.tensorflow.distruntime.RunCallableRequest other = (org.tensorflow.distruntime.RunCallableRequest) obj;
boolean result = true;
result = result && getSessionHandle()
.equals(other.getSessionHandle());
result = result && (getHandle()
== other.getHandle());
result = result && getFeedList()
.equals(other.getFeedList());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + SESSION_HANDLE_FIELD_NUMBER;
hash = (53 * hash) + getSessionHandle().hashCode();
hash = (37 * hash) + HANDLE_FIELD_NUMBER;
hash = (53 * hash) + org.nd4j.shade.protobuf.Internal.hashLong(
getHandle());
if (getFeedCount() > 0) {
hash = (37 * hash) + FEED_FIELD_NUMBER;
hash = (53 * hash) + getFeedList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(
java.nio.ByteBuffer data)
throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(
java.nio.ByteBuffer data,
org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(
org.nd4j.shade.protobuf.ByteString data)
throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(
org.nd4j.shade.protobuf.ByteString data,
org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(byte[] data)
throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(
byte[] data,
org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return org.nd4j.shade.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(
java.io.InputStream input,
org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return org.nd4j.shade.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static org.tensorflow.distruntime.RunCallableRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return org.nd4j.shade.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static org.tensorflow.distruntime.RunCallableRequest parseDelimitedFrom(
java.io.InputStream input,
org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return org.nd4j.shade.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(
org.nd4j.shade.protobuf.CodedInputStream input)
throws java.io.IOException {
return org.nd4j.shade.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.tensorflow.distruntime.RunCallableRequest parseFrom(
org.nd4j.shade.protobuf.CodedInputStream input,
org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return org.nd4j.shade.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(org.tensorflow.distruntime.RunCallableRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
org.nd4j.shade.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code tensorflow.RunCallableRequest}
*/
public static final class Builder extends
org.nd4j.shade.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:tensorflow.RunCallableRequest)
org.tensorflow.distruntime.RunCallableRequestOrBuilder {
public static final org.nd4j.shade.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_descriptor;
}
protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.tensorflow.distruntime.RunCallableRequest.class, org.tensorflow.distruntime.RunCallableRequest.Builder.class);
}
// Construct using org.tensorflow.distruntime.RunCallableRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
org.nd4j.shade.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (org.nd4j.shade.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getFeedFieldBuilder();
}
}
public Builder clear() {
super.clear();
sessionHandle_ = "";
handle_ = 0L;
if (feedBuilder_ == null) {
feed_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
} else {
feedBuilder_.clear();
}
return this;
}
public org.nd4j.shade.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_descriptor;
}
public org.tensorflow.distruntime.RunCallableRequest getDefaultInstanceForType() {
return org.tensorflow.distruntime.RunCallableRequest.getDefaultInstance();
}
public org.tensorflow.distruntime.RunCallableRequest build() {
org.tensorflow.distruntime.RunCallableRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.tensorflow.distruntime.RunCallableRequest buildPartial() {
org.tensorflow.distruntime.RunCallableRequest result = new org.tensorflow.distruntime.RunCallableRequest(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.sessionHandle_ = sessionHandle_;
result.handle_ = handle_;
if (feedBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004)) {
feed_ = java.util.Collections.unmodifiableList(feed_);
bitField0_ = (bitField0_ & ~0x00000004);
}
result.feed_ = feed_;
} else {
result.feed_ = feedBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
org.nd4j.shade.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(org.nd4j.shade.protobuf.Message other) {
if (other instanceof org.tensorflow.distruntime.RunCallableRequest) {
return mergeFrom((org.tensorflow.distruntime.RunCallableRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.tensorflow.distruntime.RunCallableRequest other) {
if (other == org.tensorflow.distruntime.RunCallableRequest.getDefaultInstance()) return this;
if (!other.getSessionHandle().isEmpty()) {
sessionHandle_ = other.sessionHandle_;
onChanged();
}
if (other.getHandle() != 0L) {
setHandle(other.getHandle());
}
if (feedBuilder_ == null) {
if (!other.feed_.isEmpty()) {
if (feed_.isEmpty()) {
feed_ = other.feed_;
bitField0_ = (bitField0_ & ~0x00000004);
} else {
ensureFeedIsMutable();
feed_.addAll(other.feed_);
}
onChanged();
}
} else {
if (!other.feed_.isEmpty()) {
if (feedBuilder_.isEmpty()) {
feedBuilder_.dispose();
feedBuilder_ = null;
feed_ = other.feed_;
bitField0_ = (bitField0_ & ~0x00000004);
feedBuilder_ =
org.nd4j.shade.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getFeedFieldBuilder() : null;
} else {
feedBuilder_.addAllMessages(other.feed_);
}
}
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
org.nd4j.shade.protobuf.CodedInputStream input,
org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
org.tensorflow.distruntime.RunCallableRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.tensorflow.distruntime.RunCallableRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object sessionHandle_ = "";
/**
*
* REQUIRED: session_handle must be returned by a CreateSession call
* to the same master service.
*
*
* string session_handle = 1;
*/
public java.lang.String getSessionHandle() {
java.lang.Object ref = sessionHandle_;
if (!(ref instanceof java.lang.String)) {
org.nd4j.shade.protobuf.ByteString bs =
(org.nd4j.shade.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sessionHandle_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* REQUIRED: session_handle must be returned by a CreateSession call
* to the same master service.
*
*
* string session_handle = 1;
*/
public org.nd4j.shade.protobuf.ByteString
getSessionHandleBytes() {
java.lang.Object ref = sessionHandle_;
if (ref instanceof String) {
org.nd4j.shade.protobuf.ByteString b =
org.nd4j.shade.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sessionHandle_ = b;
return b;
} else {
return (org.nd4j.shade.protobuf.ByteString) ref;
}
}
/**
*
* REQUIRED: session_handle must be returned by a CreateSession call
* to the same master service.
*
*
* string session_handle = 1;
*/
public Builder setSessionHandle(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
sessionHandle_ = value;
onChanged();
return this;
}
/**
*
* REQUIRED: session_handle must be returned by a CreateSession call
* to the same master service.
*
*
* string session_handle = 1;
*/
public Builder clearSessionHandle() {
sessionHandle_ = getDefaultInstance().getSessionHandle();
onChanged();
return this;
}
/**
*
* REQUIRED: session_handle must be returned by a CreateSession call
* to the same master service.
*
*
* string session_handle = 1;
*/
public Builder setSessionHandleBytes(
org.nd4j.shade.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
sessionHandle_ = value;
onChanged();
return this;
}
private long handle_ ;
/**
*
* REQUIRED: handle must be returned by a MakeCallable call to the same
* master service.
*
*
* int64 handle = 2;
*/
public long getHandle() {
return handle_;
}
/**
*
* REQUIRED: handle must be returned by a MakeCallable call to the same
* master service.
*
*
* int64 handle = 2;
*/
public Builder setHandle(long value) {
handle_ = value;
onChanged();
return this;
}
/**
*
* REQUIRED: handle must be returned by a MakeCallable call to the same
* master service.
*
*
* int64 handle = 2;
*/
public Builder clearHandle() {
handle_ = 0L;
onChanged();
return this;
}
private java.util.List feed_ =
java.util.Collections.emptyList();
private void ensureFeedIsMutable() {
if (!((bitField0_ & 0x00000004) == 0x00000004)) {
feed_ = new java.util.ArrayList(feed_);
bitField0_ |= 0x00000004;
}
}
private org.nd4j.shade.protobuf.RepeatedFieldBuilderV3<
org.tensorflow.framework.TensorProto, org.tensorflow.framework.TensorProto.Builder, org.tensorflow.framework.TensorProtoOrBuilder> feedBuilder_;
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public java.util.List getFeedList() {
if (feedBuilder_ == null) {
return java.util.Collections.unmodifiableList(feed_);
} else {
return feedBuilder_.getMessageList();
}
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public int getFeedCount() {
if (feedBuilder_ == null) {
return feed_.size();
} else {
return feedBuilder_.getCount();
}
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public org.tensorflow.framework.TensorProto getFeed(int index) {
if (feedBuilder_ == null) {
return feed_.get(index);
} else {
return feedBuilder_.getMessage(index);
}
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public Builder setFeed(
int index, org.tensorflow.framework.TensorProto value) {
if (feedBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFeedIsMutable();
feed_.set(index, value);
onChanged();
} else {
feedBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public Builder setFeed(
int index, org.tensorflow.framework.TensorProto.Builder builderForValue) {
if (feedBuilder_ == null) {
ensureFeedIsMutable();
feed_.set(index, builderForValue.build());
onChanged();
} else {
feedBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public Builder addFeed(org.tensorflow.framework.TensorProto value) {
if (feedBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFeedIsMutable();
feed_.add(value);
onChanged();
} else {
feedBuilder_.addMessage(value);
}
return this;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public Builder addFeed(
int index, org.tensorflow.framework.TensorProto value) {
if (feedBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFeedIsMutable();
feed_.add(index, value);
onChanged();
} else {
feedBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public Builder addFeed(
org.tensorflow.framework.TensorProto.Builder builderForValue) {
if (feedBuilder_ == null) {
ensureFeedIsMutable();
feed_.add(builderForValue.build());
onChanged();
} else {
feedBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public Builder addFeed(
int index, org.tensorflow.framework.TensorProto.Builder builderForValue) {
if (feedBuilder_ == null) {
ensureFeedIsMutable();
feed_.add(index, builderForValue.build());
onChanged();
} else {
feedBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public Builder addAllFeed(
java.lang.Iterable extends org.tensorflow.framework.TensorProto> values) {
if (feedBuilder_ == null) {
ensureFeedIsMutable();
org.nd4j.shade.protobuf.AbstractMessageLite.Builder.addAll(
values, feed_);
onChanged();
} else {
feedBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public Builder clearFeed() {
if (feedBuilder_ == null) {
feed_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
} else {
feedBuilder_.clear();
}
return this;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public Builder removeFeed(int index) {
if (feedBuilder_ == null) {
ensureFeedIsMutable();
feed_.remove(index);
onChanged();
} else {
feedBuilder_.remove(index);
}
return this;
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public org.tensorflow.framework.TensorProto.Builder getFeedBuilder(
int index) {
return getFeedFieldBuilder().getBuilder(index);
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public org.tensorflow.framework.TensorProtoOrBuilder getFeedOrBuilder(
int index) {
if (feedBuilder_ == null) {
return feed_.get(index); } else {
return feedBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public java.util.List extends org.tensorflow.framework.TensorProtoOrBuilder>
getFeedOrBuilderList() {
if (feedBuilder_ != null) {
return feedBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(feed_);
}
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public org.tensorflow.framework.TensorProto.Builder addFeedBuilder() {
return getFeedFieldBuilder().addBuilder(
org.tensorflow.framework.TensorProto.getDefaultInstance());
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public org.tensorflow.framework.TensorProto.Builder addFeedBuilder(
int index) {
return getFeedFieldBuilder().addBuilder(
index, org.tensorflow.framework.TensorProto.getDefaultInstance());
}
/**
*
* Values of the tensors passed as arguments to the callable, in the order
* defined in the CallableOptions.feed field passed to MakeCallable.
*
*
* repeated .tensorflow.TensorProto feed = 3;
*/
public java.util.List
getFeedBuilderList() {
return getFeedFieldBuilder().getBuilderList();
}
private org.nd4j.shade.protobuf.RepeatedFieldBuilderV3<
org.tensorflow.framework.TensorProto, org.tensorflow.framework.TensorProto.Builder, org.tensorflow.framework.TensorProtoOrBuilder>
getFeedFieldBuilder() {
if (feedBuilder_ == null) {
feedBuilder_ = new org.nd4j.shade.protobuf.RepeatedFieldBuilderV3<
org.tensorflow.framework.TensorProto, org.tensorflow.framework.TensorProto.Builder, org.tensorflow.framework.TensorProtoOrBuilder>(
feed_,
((bitField0_ & 0x00000004) == 0x00000004),
getParentForChildren(),
isClean());
feed_ = null;
}
return feedBuilder_;
}
public final Builder setUnknownFields(
final org.nd4j.shade.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
public final Builder mergeUnknownFields(
final org.nd4j.shade.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:tensorflow.RunCallableRequest)
}
// @@protoc_insertion_point(class_scope:tensorflow.RunCallableRequest)
private static final org.tensorflow.distruntime.RunCallableRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.tensorflow.distruntime.RunCallableRequest();
}
public static org.tensorflow.distruntime.RunCallableRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final org.nd4j.shade.protobuf.Parser
PARSER = new org.nd4j.shade.protobuf.AbstractParser() {
public RunCallableRequest parsePartialFrom(
org.nd4j.shade.protobuf.CodedInputStream input,
org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
return new RunCallableRequest(input, extensionRegistry);
}
};
public static org.nd4j.shade.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public org.nd4j.shade.protobuf.Parser getParserForType() {
return PARSER;
}
public org.tensorflow.distruntime.RunCallableRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy