
org.tensorflow.framework.WhileContextDef Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/control_flow.proto
package org.tensorflow.framework;
/**
*
* Protocol buffer representing a WhileContext object.
*
*
* Protobuf type {@code tensorflow.WhileContextDef}
*/
public final class WhileContextDef extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:tensorflow.WhileContextDef)
WhileContextDefOrBuilder {
// Use WhileContextDef.newBuilder() to construct.
private WhileContextDef(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private WhileContextDef() {
contextName_ = "";
parallelIterations_ = 0;
backProp_ = false;
swapMemory_ = false;
pivotName_ = "";
pivotForPredName_ = "";
pivotForBodyName_ = "";
loopExitNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
loopEnterNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return com.google.protobuf.UnknownFieldSet.getDefaultInstance();
}
private WhileContextDef(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
int mutable_bitField0_ = 0;
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!input.skipField(tag)) {
done = true;
}
break;
}
case 10: {
java.lang.String s = input.readStringRequireUtf8();
contextName_ = s;
break;
}
case 16: {
parallelIterations_ = input.readInt32();
break;
}
case 24: {
backProp_ = input.readBool();
break;
}
case 32: {
swapMemory_ = input.readBool();
break;
}
case 42: {
java.lang.String s = input.readStringRequireUtf8();
pivotName_ = s;
break;
}
case 50: {
java.lang.String s = input.readStringRequireUtf8();
pivotForPredName_ = s;
break;
}
case 58: {
java.lang.String s = input.readStringRequireUtf8();
pivotForBodyName_ = s;
break;
}
case 66: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000080) == 0x00000080)) {
loopExitNames_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000080;
}
loopExitNames_.add(s);
break;
}
case 74: {
org.tensorflow.framework.ValuesDef.Builder subBuilder = null;
if (valuesDef_ != null) {
subBuilder = valuesDef_.toBuilder();
}
valuesDef_ = input.readMessage(org.tensorflow.framework.ValuesDef.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(valuesDef_);
valuesDef_ = subBuilder.buildPartial();
}
break;
}
case 82: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000100) == 0x00000100)) {
loopEnterNames_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000100;
}
loopEnterNames_.add(s);
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000080) == 0x00000080)) {
loopExitNames_ = loopExitNames_.getUnmodifiableView();
}
if (((mutable_bitField0_ & 0x00000100) == 0x00000100)) {
loopEnterNames_ = loopEnterNames_.getUnmodifiableView();
}
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.tensorflow.framework.ControlFlowProtos.internal_static_tensorflow_WhileContextDef_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.tensorflow.framework.ControlFlowProtos.internal_static_tensorflow_WhileContextDef_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.tensorflow.framework.WhileContextDef.class, org.tensorflow.framework.WhileContextDef.Builder.class);
}
private int bitField0_;
public static final int CONTEXT_NAME_FIELD_NUMBER = 1;
private volatile java.lang.Object contextName_;
/**
*
* Name of the context.
*
*
* string context_name = 1;
*/
public java.lang.String getContextName() {
java.lang.Object ref = contextName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
contextName_ = s;
return s;
}
}
/**
*
* Name of the context.
*
*
* string context_name = 1;
*/
public com.google.protobuf.ByteString
getContextNameBytes() {
java.lang.Object ref = contextName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
contextName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PARALLEL_ITERATIONS_FIELD_NUMBER = 2;
private int parallelIterations_;
/**
*
* The number of iterations allowed to run in parallel.
*
*
* int32 parallel_iterations = 2;
*/
public int getParallelIterations() {
return parallelIterations_;
}
public static final int BACK_PROP_FIELD_NUMBER = 3;
private boolean backProp_;
/**
*
* Whether backprop is enabled for this while loop.
*
*
* bool back_prop = 3;
*/
public boolean getBackProp() {
return backProp_;
}
public static final int SWAP_MEMORY_FIELD_NUMBER = 4;
private boolean swapMemory_;
/**
*
* Whether GPU-CPU memory swap is enabled for this loop.
*
*
* bool swap_memory = 4;
*/
public boolean getSwapMemory() {
return swapMemory_;
}
public static final int PIVOT_NAME_FIELD_NUMBER = 5;
private volatile java.lang.Object pivotName_;
/**
*
* Name of the pivot tensor.
*
*
* string pivot_name = 5;
*/
public java.lang.String getPivotName() {
java.lang.Object ref = pivotName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pivotName_ = s;
return s;
}
}
/**
*
* Name of the pivot tensor.
*
*
* string pivot_name = 5;
*/
public com.google.protobuf.ByteString
getPivotNameBytes() {
java.lang.Object ref = pivotName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
pivotName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PIVOT_FOR_PRED_NAME_FIELD_NUMBER = 6;
private volatile java.lang.Object pivotForPredName_;
/**
*
* Name of the pivot_for_pred tensor.
*
*
* string pivot_for_pred_name = 6;
*/
public java.lang.String getPivotForPredName() {
java.lang.Object ref = pivotForPredName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pivotForPredName_ = s;
return s;
}
}
/**
*
* Name of the pivot_for_pred tensor.
*
*
* string pivot_for_pred_name = 6;
*/
public com.google.protobuf.ByteString
getPivotForPredNameBytes() {
java.lang.Object ref = pivotForPredName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
pivotForPredName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PIVOT_FOR_BODY_NAME_FIELD_NUMBER = 7;
private volatile java.lang.Object pivotForBodyName_;
/**
*
* Name of the pivot_for_body tensor.
*
*
* string pivot_for_body_name = 7;
*/
public java.lang.String getPivotForBodyName() {
java.lang.Object ref = pivotForBodyName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pivotForBodyName_ = s;
return s;
}
}
/**
*
* Name of the pivot_for_body tensor.
*
*
* string pivot_for_body_name = 7;
*/
public com.google.protobuf.ByteString
getPivotForBodyNameBytes() {
java.lang.Object ref = pivotForBodyName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
pivotForBodyName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int LOOP_EXIT_NAMES_FIELD_NUMBER = 8;
private com.google.protobuf.LazyStringList loopExitNames_;
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public com.google.protobuf.ProtocolStringList
getLoopExitNamesList() {
return loopExitNames_;
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public int getLoopExitNamesCount() {
return loopExitNames_.size();
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public java.lang.String getLoopExitNames(int index) {
return loopExitNames_.get(index);
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public com.google.protobuf.ByteString
getLoopExitNamesBytes(int index) {
return loopExitNames_.getByteString(index);
}
public static final int LOOP_ENTER_NAMES_FIELD_NUMBER = 10;
private com.google.protobuf.LazyStringList loopEnterNames_;
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public com.google.protobuf.ProtocolStringList
getLoopEnterNamesList() {
return loopEnterNames_;
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public int getLoopEnterNamesCount() {
return loopEnterNames_.size();
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public java.lang.String getLoopEnterNames(int index) {
return loopEnterNames_.get(index);
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public com.google.protobuf.ByteString
getLoopEnterNamesBytes(int index) {
return loopEnterNames_.getByteString(index);
}
public static final int VALUES_DEF_FIELD_NUMBER = 9;
private org.tensorflow.framework.ValuesDef valuesDef_;
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public boolean hasValuesDef() {
return valuesDef_ != null;
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public org.tensorflow.framework.ValuesDef getValuesDef() {
return valuesDef_ == null ? org.tensorflow.framework.ValuesDef.getDefaultInstance() : valuesDef_;
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public org.tensorflow.framework.ValuesDefOrBuilder getValuesDefOrBuilder() {
return getValuesDef();
}
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(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getContextNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, contextName_);
}
if (parallelIterations_ != 0) {
output.writeInt32(2, parallelIterations_);
}
if (backProp_ != false) {
output.writeBool(3, backProp_);
}
if (swapMemory_ != false) {
output.writeBool(4, swapMemory_);
}
if (!getPivotNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, pivotName_);
}
if (!getPivotForPredNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, pivotForPredName_);
}
if (!getPivotForBodyNameBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, pivotForBodyName_);
}
for (int i = 0; i < loopExitNames_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 8, loopExitNames_.getRaw(i));
}
if (valuesDef_ != null) {
output.writeMessage(9, getValuesDef());
}
for (int i = 0; i < loopEnterNames_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 10, loopEnterNames_.getRaw(i));
}
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getContextNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, contextName_);
}
if (parallelIterations_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, parallelIterations_);
}
if (backProp_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(3, backProp_);
}
if (swapMemory_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(4, swapMemory_);
}
if (!getPivotNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, pivotName_);
}
if (!getPivotForPredNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, pivotForPredName_);
}
if (!getPivotForBodyNameBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, pivotForBodyName_);
}
{
int dataSize = 0;
for (int i = 0; i < loopExitNames_.size(); i++) {
dataSize += computeStringSizeNoTag(loopExitNames_.getRaw(i));
}
size += dataSize;
size += 1 * getLoopExitNamesList().size();
}
if (valuesDef_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(9, getValuesDef());
}
{
int dataSize = 0;
for (int i = 0; i < loopEnterNames_.size(); i++) {
dataSize += computeStringSizeNoTag(loopEnterNames_.getRaw(i));
}
size += dataSize;
size += 1 * getLoopEnterNamesList().size();
}
memoizedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.tensorflow.framework.WhileContextDef)) {
return super.equals(obj);
}
org.tensorflow.framework.WhileContextDef other = (org.tensorflow.framework.WhileContextDef) obj;
boolean result = true;
result = result && getContextName()
.equals(other.getContextName());
result = result && (getParallelIterations()
== other.getParallelIterations());
result = result && (getBackProp()
== other.getBackProp());
result = result && (getSwapMemory()
== other.getSwapMemory());
result = result && getPivotName()
.equals(other.getPivotName());
result = result && getPivotForPredName()
.equals(other.getPivotForPredName());
result = result && getPivotForBodyName()
.equals(other.getPivotForBodyName());
result = result && getLoopExitNamesList()
.equals(other.getLoopExitNamesList());
result = result && getLoopEnterNamesList()
.equals(other.getLoopEnterNamesList());
result = result && (hasValuesDef() == other.hasValuesDef());
if (hasValuesDef()) {
result = result && getValuesDef()
.equals(other.getValuesDef());
}
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + CONTEXT_NAME_FIELD_NUMBER;
hash = (53 * hash) + getContextName().hashCode();
hash = (37 * hash) + PARALLEL_ITERATIONS_FIELD_NUMBER;
hash = (53 * hash) + getParallelIterations();
hash = (37 * hash) + BACK_PROP_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getBackProp());
hash = (37 * hash) + SWAP_MEMORY_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getSwapMemory());
hash = (37 * hash) + PIVOT_NAME_FIELD_NUMBER;
hash = (53 * hash) + getPivotName().hashCode();
hash = (37 * hash) + PIVOT_FOR_PRED_NAME_FIELD_NUMBER;
hash = (53 * hash) + getPivotForPredName().hashCode();
hash = (37 * hash) + PIVOT_FOR_BODY_NAME_FIELD_NUMBER;
hash = (53 * hash) + getPivotForBodyName().hashCode();
if (getLoopExitNamesCount() > 0) {
hash = (37 * hash) + LOOP_EXIT_NAMES_FIELD_NUMBER;
hash = (53 * hash) + getLoopExitNamesList().hashCode();
}
if (getLoopEnterNamesCount() > 0) {
hash = (37 * hash) + LOOP_ENTER_NAMES_FIELD_NUMBER;
hash = (53 * hash) + getLoopEnterNamesList().hashCode();
}
if (hasValuesDef()) {
hash = (37 * hash) + VALUES_DEF_FIELD_NUMBER;
hash = (53 * hash) + getValuesDef().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.tensorflow.framework.WhileContextDef parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.framework.WhileContextDef parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.tensorflow.framework.WhileContextDef parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.framework.WhileContextDef parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.tensorflow.framework.WhileContextDef parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.framework.WhileContextDef parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.tensorflow.framework.WhileContextDef parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.tensorflow.framework.WhileContextDef parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static org.tensorflow.framework.WhileContextDef parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static org.tensorflow.framework.WhileContextDef parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static org.tensorflow.framework.WhileContextDef parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.tensorflow.framework.WhileContextDef parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.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.framework.WhileContextDef 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(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* Protocol buffer representing a WhileContext object.
*
*
* Protobuf type {@code tensorflow.WhileContextDef}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:tensorflow.WhileContextDef)
org.tensorflow.framework.WhileContextDefOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.tensorflow.framework.ControlFlowProtos.internal_static_tensorflow_WhileContextDef_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.tensorflow.framework.ControlFlowProtos.internal_static_tensorflow_WhileContextDef_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.tensorflow.framework.WhileContextDef.class, org.tensorflow.framework.WhileContextDef.Builder.class);
}
// Construct using org.tensorflow.framework.WhileContextDef.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
contextName_ = "";
parallelIterations_ = 0;
backProp_ = false;
swapMemory_ = false;
pivotName_ = "";
pivotForPredName_ = "";
pivotForBodyName_ = "";
loopExitNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000080);
loopEnterNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000100);
if (valuesDefBuilder_ == null) {
valuesDef_ = null;
} else {
valuesDef_ = null;
valuesDefBuilder_ = null;
}
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.tensorflow.framework.ControlFlowProtos.internal_static_tensorflow_WhileContextDef_descriptor;
}
public org.tensorflow.framework.WhileContextDef getDefaultInstanceForType() {
return org.tensorflow.framework.WhileContextDef.getDefaultInstance();
}
public org.tensorflow.framework.WhileContextDef build() {
org.tensorflow.framework.WhileContextDef result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.tensorflow.framework.WhileContextDef buildPartial() {
org.tensorflow.framework.WhileContextDef result = new org.tensorflow.framework.WhileContextDef(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.contextName_ = contextName_;
result.parallelIterations_ = parallelIterations_;
result.backProp_ = backProp_;
result.swapMemory_ = swapMemory_;
result.pivotName_ = pivotName_;
result.pivotForPredName_ = pivotForPredName_;
result.pivotForBodyName_ = pivotForBodyName_;
if (((bitField0_ & 0x00000080) == 0x00000080)) {
loopExitNames_ = loopExitNames_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000080);
}
result.loopExitNames_ = loopExitNames_;
if (((bitField0_ & 0x00000100) == 0x00000100)) {
loopEnterNames_ = loopEnterNames_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000100);
}
result.loopEnterNames_ = loopEnterNames_;
if (valuesDefBuilder_ == null) {
result.valuesDef_ = valuesDef_;
} else {
result.valuesDef_ = valuesDefBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.tensorflow.framework.WhileContextDef) {
return mergeFrom((org.tensorflow.framework.WhileContextDef)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.tensorflow.framework.WhileContextDef other) {
if (other == org.tensorflow.framework.WhileContextDef.getDefaultInstance()) return this;
if (!other.getContextName().isEmpty()) {
contextName_ = other.contextName_;
onChanged();
}
if (other.getParallelIterations() != 0) {
setParallelIterations(other.getParallelIterations());
}
if (other.getBackProp() != false) {
setBackProp(other.getBackProp());
}
if (other.getSwapMemory() != false) {
setSwapMemory(other.getSwapMemory());
}
if (!other.getPivotName().isEmpty()) {
pivotName_ = other.pivotName_;
onChanged();
}
if (!other.getPivotForPredName().isEmpty()) {
pivotForPredName_ = other.pivotForPredName_;
onChanged();
}
if (!other.getPivotForBodyName().isEmpty()) {
pivotForBodyName_ = other.pivotForBodyName_;
onChanged();
}
if (!other.loopExitNames_.isEmpty()) {
if (loopExitNames_.isEmpty()) {
loopExitNames_ = other.loopExitNames_;
bitField0_ = (bitField0_ & ~0x00000080);
} else {
ensureLoopExitNamesIsMutable();
loopExitNames_.addAll(other.loopExitNames_);
}
onChanged();
}
if (!other.loopEnterNames_.isEmpty()) {
if (loopEnterNames_.isEmpty()) {
loopEnterNames_ = other.loopEnterNames_;
bitField0_ = (bitField0_ & ~0x00000100);
} else {
ensureLoopEnterNamesIsMutable();
loopEnterNames_.addAll(other.loopEnterNames_);
}
onChanged();
}
if (other.hasValuesDef()) {
mergeValuesDef(other.getValuesDef());
}
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
org.tensorflow.framework.WhileContextDef parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.tensorflow.framework.WhileContextDef) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object contextName_ = "";
/**
*
* Name of the context.
*
*
* string context_name = 1;
*/
public java.lang.String getContextName() {
java.lang.Object ref = contextName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
contextName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Name of the context.
*
*
* string context_name = 1;
*/
public com.google.protobuf.ByteString
getContextNameBytes() {
java.lang.Object ref = contextName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
contextName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Name of the context.
*
*
* string context_name = 1;
*/
public Builder setContextName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
contextName_ = value;
onChanged();
return this;
}
/**
*
* Name of the context.
*
*
* string context_name = 1;
*/
public Builder clearContextName() {
contextName_ = getDefaultInstance().getContextName();
onChanged();
return this;
}
/**
*
* Name of the context.
*
*
* string context_name = 1;
*/
public Builder setContextNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
contextName_ = value;
onChanged();
return this;
}
private int parallelIterations_ ;
/**
*
* The number of iterations allowed to run in parallel.
*
*
* int32 parallel_iterations = 2;
*/
public int getParallelIterations() {
return parallelIterations_;
}
/**
*
* The number of iterations allowed to run in parallel.
*
*
* int32 parallel_iterations = 2;
*/
public Builder setParallelIterations(int value) {
parallelIterations_ = value;
onChanged();
return this;
}
/**
*
* The number of iterations allowed to run in parallel.
*
*
* int32 parallel_iterations = 2;
*/
public Builder clearParallelIterations() {
parallelIterations_ = 0;
onChanged();
return this;
}
private boolean backProp_ ;
/**
*
* Whether backprop is enabled for this while loop.
*
*
* bool back_prop = 3;
*/
public boolean getBackProp() {
return backProp_;
}
/**
*
* Whether backprop is enabled for this while loop.
*
*
* bool back_prop = 3;
*/
public Builder setBackProp(boolean value) {
backProp_ = value;
onChanged();
return this;
}
/**
*
* Whether backprop is enabled for this while loop.
*
*
* bool back_prop = 3;
*/
public Builder clearBackProp() {
backProp_ = false;
onChanged();
return this;
}
private boolean swapMemory_ ;
/**
*
* Whether GPU-CPU memory swap is enabled for this loop.
*
*
* bool swap_memory = 4;
*/
public boolean getSwapMemory() {
return swapMemory_;
}
/**
*
* Whether GPU-CPU memory swap is enabled for this loop.
*
*
* bool swap_memory = 4;
*/
public Builder setSwapMemory(boolean value) {
swapMemory_ = value;
onChanged();
return this;
}
/**
*
* Whether GPU-CPU memory swap is enabled for this loop.
*
*
* bool swap_memory = 4;
*/
public Builder clearSwapMemory() {
swapMemory_ = false;
onChanged();
return this;
}
private java.lang.Object pivotName_ = "";
/**
*
* Name of the pivot tensor.
*
*
* string pivot_name = 5;
*/
public java.lang.String getPivotName() {
java.lang.Object ref = pivotName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pivotName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Name of the pivot tensor.
*
*
* string pivot_name = 5;
*/
public com.google.protobuf.ByteString
getPivotNameBytes() {
java.lang.Object ref = pivotName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
pivotName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Name of the pivot tensor.
*
*
* string pivot_name = 5;
*/
public Builder setPivotName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
pivotName_ = value;
onChanged();
return this;
}
/**
*
* Name of the pivot tensor.
*
*
* string pivot_name = 5;
*/
public Builder clearPivotName() {
pivotName_ = getDefaultInstance().getPivotName();
onChanged();
return this;
}
/**
*
* Name of the pivot tensor.
*
*
* string pivot_name = 5;
*/
public Builder setPivotNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
pivotName_ = value;
onChanged();
return this;
}
private java.lang.Object pivotForPredName_ = "";
/**
*
* Name of the pivot_for_pred tensor.
*
*
* string pivot_for_pred_name = 6;
*/
public java.lang.String getPivotForPredName() {
java.lang.Object ref = pivotForPredName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pivotForPredName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Name of the pivot_for_pred tensor.
*
*
* string pivot_for_pred_name = 6;
*/
public com.google.protobuf.ByteString
getPivotForPredNameBytes() {
java.lang.Object ref = pivotForPredName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
pivotForPredName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Name of the pivot_for_pred tensor.
*
*
* string pivot_for_pred_name = 6;
*/
public Builder setPivotForPredName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
pivotForPredName_ = value;
onChanged();
return this;
}
/**
*
* Name of the pivot_for_pred tensor.
*
*
* string pivot_for_pred_name = 6;
*/
public Builder clearPivotForPredName() {
pivotForPredName_ = getDefaultInstance().getPivotForPredName();
onChanged();
return this;
}
/**
*
* Name of the pivot_for_pred tensor.
*
*
* string pivot_for_pred_name = 6;
*/
public Builder setPivotForPredNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
pivotForPredName_ = value;
onChanged();
return this;
}
private java.lang.Object pivotForBodyName_ = "";
/**
*
* Name of the pivot_for_body tensor.
*
*
* string pivot_for_body_name = 7;
*/
public java.lang.String getPivotForBodyName() {
java.lang.Object ref = pivotForBodyName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pivotForBodyName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Name of the pivot_for_body tensor.
*
*
* string pivot_for_body_name = 7;
*/
public com.google.protobuf.ByteString
getPivotForBodyNameBytes() {
java.lang.Object ref = pivotForBodyName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
pivotForBodyName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* Name of the pivot_for_body tensor.
*
*
* string pivot_for_body_name = 7;
*/
public Builder setPivotForBodyName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
pivotForBodyName_ = value;
onChanged();
return this;
}
/**
*
* Name of the pivot_for_body tensor.
*
*
* string pivot_for_body_name = 7;
*/
public Builder clearPivotForBodyName() {
pivotForBodyName_ = getDefaultInstance().getPivotForBodyName();
onChanged();
return this;
}
/**
*
* Name of the pivot_for_body tensor.
*
*
* string pivot_for_body_name = 7;
*/
public Builder setPivotForBodyNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
pivotForBodyName_ = value;
onChanged();
return this;
}
private com.google.protobuf.LazyStringList loopExitNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureLoopExitNamesIsMutable() {
if (!((bitField0_ & 0x00000080) == 0x00000080)) {
loopExitNames_ = new com.google.protobuf.LazyStringArrayList(loopExitNames_);
bitField0_ |= 0x00000080;
}
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public com.google.protobuf.ProtocolStringList
getLoopExitNamesList() {
return loopExitNames_.getUnmodifiableView();
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public int getLoopExitNamesCount() {
return loopExitNames_.size();
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public java.lang.String getLoopExitNames(int index) {
return loopExitNames_.get(index);
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public com.google.protobuf.ByteString
getLoopExitNamesBytes(int index) {
return loopExitNames_.getByteString(index);
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public Builder setLoopExitNames(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureLoopExitNamesIsMutable();
loopExitNames_.set(index, value);
onChanged();
return this;
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public Builder addLoopExitNames(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureLoopExitNamesIsMutable();
loopExitNames_.add(value);
onChanged();
return this;
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public Builder addAllLoopExitNames(
java.lang.Iterable values) {
ensureLoopExitNamesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, loopExitNames_);
onChanged();
return this;
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public Builder clearLoopExitNames() {
loopExitNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000080);
onChanged();
return this;
}
/**
*
* List of names for exit tensors.
*
*
* repeated string loop_exit_names = 8;
*/
public Builder addLoopExitNamesBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureLoopExitNamesIsMutable();
loopExitNames_.add(value);
onChanged();
return this;
}
private com.google.protobuf.LazyStringList loopEnterNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureLoopEnterNamesIsMutable() {
if (!((bitField0_ & 0x00000100) == 0x00000100)) {
loopEnterNames_ = new com.google.protobuf.LazyStringArrayList(loopEnterNames_);
bitField0_ |= 0x00000100;
}
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public com.google.protobuf.ProtocolStringList
getLoopEnterNamesList() {
return loopEnterNames_.getUnmodifiableView();
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public int getLoopEnterNamesCount() {
return loopEnterNames_.size();
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public java.lang.String getLoopEnterNames(int index) {
return loopEnterNames_.get(index);
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public com.google.protobuf.ByteString
getLoopEnterNamesBytes(int index) {
return loopEnterNames_.getByteString(index);
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public Builder setLoopEnterNames(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureLoopEnterNamesIsMutable();
loopEnterNames_.set(index, value);
onChanged();
return this;
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public Builder addLoopEnterNames(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureLoopEnterNamesIsMutable();
loopEnterNames_.add(value);
onChanged();
return this;
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public Builder addAllLoopEnterNames(
java.lang.Iterable values) {
ensureLoopEnterNamesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, loopEnterNames_);
onChanged();
return this;
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public Builder clearLoopEnterNames() {
loopEnterNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000100);
onChanged();
return this;
}
/**
*
* List of names for enter tensors.
*
*
* repeated string loop_enter_names = 10;
*/
public Builder addLoopEnterNamesBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureLoopEnterNamesIsMutable();
loopEnterNames_.add(value);
onChanged();
return this;
}
private org.tensorflow.framework.ValuesDef valuesDef_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
org.tensorflow.framework.ValuesDef, org.tensorflow.framework.ValuesDef.Builder, org.tensorflow.framework.ValuesDefOrBuilder> valuesDefBuilder_;
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public boolean hasValuesDef() {
return valuesDefBuilder_ != null || valuesDef_ != null;
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public org.tensorflow.framework.ValuesDef getValuesDef() {
if (valuesDefBuilder_ == null) {
return valuesDef_ == null ? org.tensorflow.framework.ValuesDef.getDefaultInstance() : valuesDef_;
} else {
return valuesDefBuilder_.getMessage();
}
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public Builder setValuesDef(org.tensorflow.framework.ValuesDef value) {
if (valuesDefBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
valuesDef_ = value;
onChanged();
} else {
valuesDefBuilder_.setMessage(value);
}
return this;
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public Builder setValuesDef(
org.tensorflow.framework.ValuesDef.Builder builderForValue) {
if (valuesDefBuilder_ == null) {
valuesDef_ = builderForValue.build();
onChanged();
} else {
valuesDefBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public Builder mergeValuesDef(org.tensorflow.framework.ValuesDef value) {
if (valuesDefBuilder_ == null) {
if (valuesDef_ != null) {
valuesDef_ =
org.tensorflow.framework.ValuesDef.newBuilder(valuesDef_).mergeFrom(value).buildPartial();
} else {
valuesDef_ = value;
}
onChanged();
} else {
valuesDefBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public Builder clearValuesDef() {
if (valuesDefBuilder_ == null) {
valuesDef_ = null;
onChanged();
} else {
valuesDef_ = null;
valuesDefBuilder_ = null;
}
return this;
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public org.tensorflow.framework.ValuesDef.Builder getValuesDefBuilder() {
onChanged();
return getValuesDefFieldBuilder().getBuilder();
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
public org.tensorflow.framework.ValuesDefOrBuilder getValuesDefOrBuilder() {
if (valuesDefBuilder_ != null) {
return valuesDefBuilder_.getMessageOrBuilder();
} else {
return valuesDef_ == null ?
org.tensorflow.framework.ValuesDef.getDefaultInstance() : valuesDef_;
}
}
/**
*
* Values and external values in control flow context.
*
*
* .tensorflow.ValuesDef values_def = 9;
*/
private com.google.protobuf.SingleFieldBuilderV3<
org.tensorflow.framework.ValuesDef, org.tensorflow.framework.ValuesDef.Builder, org.tensorflow.framework.ValuesDefOrBuilder>
getValuesDefFieldBuilder() {
if (valuesDefBuilder_ == null) {
valuesDefBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
org.tensorflow.framework.ValuesDef, org.tensorflow.framework.ValuesDef.Builder, org.tensorflow.framework.ValuesDefOrBuilder>(
getValuesDef(),
getParentForChildren(),
isClean());
valuesDef_ = null;
}
return valuesDefBuilder_;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
// @@protoc_insertion_point(builder_scope:tensorflow.WhileContextDef)
}
// @@protoc_insertion_point(class_scope:tensorflow.WhileContextDef)
private static final org.tensorflow.framework.WhileContextDef DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.tensorflow.framework.WhileContextDef();
}
public static org.tensorflow.framework.WhileContextDef getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
public WhileContextDef parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new WhileContextDef(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public org.tensorflow.framework.WhileContextDef getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy