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

org.tensorflow.framework.WhileContextDef 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/control_flow.proto

package org.tensorflow.framework;

/**
 * 
 * Protocol buffer representing a WhileContext object.
 * 
* * Protobuf type {@code tensorflow.WhileContextDef} */ public final class WhileContextDef extends com.github.os72.protobuf351.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:tensorflow.WhileContextDef) WhileContextDefOrBuilder { private static final long serialVersionUID = 0L; // Use WhileContextDef.newBuilder() to construct. private WhileContextDef(com.github.os72.protobuf351.GeneratedMessageV3.Builder builder) { super(builder); } private WhileContextDef() { contextName_ = ""; parallelIterations_ = 0; backProp_ = false; swapMemory_ = false; pivotName_ = ""; pivotForPredName_ = ""; pivotForBodyName_ = ""; loopExitNames_ = com.github.os72.protobuf351.LazyStringArrayList.EMPTY; loopEnterNames_ = com.github.os72.protobuf351.LazyStringArrayList.EMPTY; maximumIterationsName_ = ""; nestedContexts_ = java.util.Collections.emptyList(); } @java.lang.Override public final com.github.os72.protobuf351.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private WhileContextDef( com.github.os72.protobuf351.CodedInputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws com.github.os72.protobuf351.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } int mutable_bitField0_ = 0; com.github.os72.protobuf351.UnknownFieldSet.Builder unknownFields = com.github.os72.protobuf351.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(); 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.github.os72.protobuf351.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.github.os72.protobuf351.LazyStringArrayList(); mutable_bitField0_ |= 0x00000100; } loopEnterNames_.add(s); break; } case 90: { java.lang.String s = input.readStringRequireUtf8(); maximumIterationsName_ = s; break; } case 98: { if (!((mutable_bitField0_ & 0x00000800) == 0x00000800)) { nestedContexts_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000800; } nestedContexts_.add( input.readMessage(org.tensorflow.framework.ControlFlowContextDef.parser(), extensionRegistry)); break; } } } } catch (com.github.os72.protobuf351.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.github.os72.protobuf351.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000080) == 0x00000080)) { loopExitNames_ = loopExitNames_.getUnmodifiableView(); } if (((mutable_bitField0_ & 0x00000100) == 0x00000100)) { loopEnterNames_ = loopEnterNames_.getUnmodifiableView(); } if (((mutable_bitField0_ & 0x00000800) == 0x00000800)) { nestedContexts_ = java.util.Collections.unmodifiableList(nestedContexts_); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.github.os72.protobuf351.Descriptors.Descriptor getDescriptor() { return org.tensorflow.framework.ControlFlowProtos.internal_static_tensorflow_WhileContextDef_descriptor; } protected com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.ByteString) ref; java.lang.String s = bs.toStringUtf8(); contextName_ = s; return s; } } /** *
   * Name of the context.
   * 
* * string context_name = 1; */ public com.github.os72.protobuf351.ByteString getContextNameBytes() { java.lang.Object ref = contextName_; if (ref instanceof java.lang.String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); contextName_ = b; return b; } else { return (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.ByteString) ref; java.lang.String s = bs.toStringUtf8(); pivotName_ = s; return s; } } /** *
   * Name of the pivot tensor.
   * 
* * string pivot_name = 5; */ public com.github.os72.protobuf351.ByteString getPivotNameBytes() { java.lang.Object ref = pivotName_; if (ref instanceof java.lang.String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); pivotName_ = b; return b; } else { return (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString getPivotForPredNameBytes() { java.lang.Object ref = pivotForPredName_; if (ref instanceof java.lang.String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); pivotForPredName_ = b; return b; } else { return (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString getPivotForBodyNameBytes() { java.lang.Object ref = pivotForBodyName_; if (ref instanceof java.lang.String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); pivotForBodyName_ = b; return b; } else { return (com.github.os72.protobuf351.ByteString) ref; } } public static final int LOOP_EXIT_NAMES_FIELD_NUMBER = 8; private com.github.os72.protobuf351.LazyStringList loopExitNames_; /** *
   * List of names for exit tensors.
   * 
* * repeated string loop_exit_names = 8; */ public com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString getLoopExitNamesBytes(int index) { return loopExitNames_.getByteString(index); } public static final int LOOP_ENTER_NAMES_FIELD_NUMBER = 10; private com.github.os72.protobuf351.LazyStringList loopEnterNames_; /** *
   * List of names for enter tensors.
   * 
* * repeated string loop_enter_names = 10; */ public com.github.os72.protobuf351.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.github.os72.protobuf351.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(); } public static final int MAXIMUM_ITERATIONS_NAME_FIELD_NUMBER = 11; private volatile java.lang.Object maximumIterationsName_; /** *
   * Optional name of the maximum_iterations tensor.
   * 
* * string maximum_iterations_name = 11; */ public java.lang.String getMaximumIterationsName() { java.lang.Object ref = maximumIterationsName_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.ByteString) ref; java.lang.String s = bs.toStringUtf8(); maximumIterationsName_ = s; return s; } } /** *
   * Optional name of the maximum_iterations tensor.
   * 
* * string maximum_iterations_name = 11; */ public com.github.os72.protobuf351.ByteString getMaximumIterationsNameBytes() { java.lang.Object ref = maximumIterationsName_; if (ref instanceof java.lang.String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); maximumIterationsName_ = b; return b; } else { return (com.github.os72.protobuf351.ByteString) ref; } } public static final int NESTED_CONTEXTS_FIELD_NUMBER = 12; private java.util.List nestedContexts_; /** *
   * Contexts contained inside this context (e.g. nested whiles).
   * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public java.util.List getNestedContextsList() { return nestedContexts_; } /** *
   * Contexts contained inside this context (e.g. nested whiles).
   * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public java.util.List getNestedContextsOrBuilderList() { return nestedContexts_; } /** *
   * Contexts contained inside this context (e.g. nested whiles).
   * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public int getNestedContextsCount() { return nestedContexts_.size(); } /** *
   * Contexts contained inside this context (e.g. nested whiles).
   * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public org.tensorflow.framework.ControlFlowContextDef getNestedContexts(int index) { return nestedContexts_.get(index); } /** *
   * Contexts contained inside this context (e.g. nested whiles).
   * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public org.tensorflow.framework.ControlFlowContextDefOrBuilder getNestedContextsOrBuilder( int index) { return nestedContexts_.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(com.github.os72.protobuf351.CodedOutputStream output) throws java.io.IOException { if (!getContextNameBytes().isEmpty()) { com.github.os72.protobuf351.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.github.os72.protobuf351.GeneratedMessageV3.writeString(output, 5, pivotName_); } if (!getPivotForPredNameBytes().isEmpty()) { com.github.os72.protobuf351.GeneratedMessageV3.writeString(output, 6, pivotForPredName_); } if (!getPivotForBodyNameBytes().isEmpty()) { com.github.os72.protobuf351.GeneratedMessageV3.writeString(output, 7, pivotForBodyName_); } for (int i = 0; i < loopExitNames_.size(); i++) { com.github.os72.protobuf351.GeneratedMessageV3.writeString(output, 8, loopExitNames_.getRaw(i)); } if (valuesDef_ != null) { output.writeMessage(9, getValuesDef()); } for (int i = 0; i < loopEnterNames_.size(); i++) { com.github.os72.protobuf351.GeneratedMessageV3.writeString(output, 10, loopEnterNames_.getRaw(i)); } if (!getMaximumIterationsNameBytes().isEmpty()) { com.github.os72.protobuf351.GeneratedMessageV3.writeString(output, 11, maximumIterationsName_); } for (int i = 0; i < nestedContexts_.size(); i++) { output.writeMessage(12, nestedContexts_.get(i)); } unknownFields.writeTo(output); } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getContextNameBytes().isEmpty()) { size += com.github.os72.protobuf351.GeneratedMessageV3.computeStringSize(1, contextName_); } if (parallelIterations_ != 0) { size += com.github.os72.protobuf351.CodedOutputStream .computeInt32Size(2, parallelIterations_); } if (backProp_ != false) { size += com.github.os72.protobuf351.CodedOutputStream .computeBoolSize(3, backProp_); } if (swapMemory_ != false) { size += com.github.os72.protobuf351.CodedOutputStream .computeBoolSize(4, swapMemory_); } if (!getPivotNameBytes().isEmpty()) { size += com.github.os72.protobuf351.GeneratedMessageV3.computeStringSize(5, pivotName_); } if (!getPivotForPredNameBytes().isEmpty()) { size += com.github.os72.protobuf351.GeneratedMessageV3.computeStringSize(6, pivotForPredName_); } if (!getPivotForBodyNameBytes().isEmpty()) { size += com.github.os72.protobuf351.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.github.os72.protobuf351.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(); } if (!getMaximumIterationsNameBytes().isEmpty()) { size += com.github.os72.protobuf351.GeneratedMessageV3.computeStringSize(11, maximumIterationsName_); } for (int i = 0; i < nestedContexts_.size(); i++) { size += com.github.os72.protobuf351.CodedOutputStream .computeMessageSize(12, nestedContexts_.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.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()); } result = result && getMaximumIterationsName() .equals(other.getMaximumIterationsName()); result = result && getNestedContextsList() .equals(other.getNestedContextsList()); 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) + 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.github.os72.protobuf351.Internal.hashBoolean( getBackProp()); hash = (37 * hash) + SWAP_MEMORY_FIELD_NUMBER; hash = (53 * hash) + com.github.os72.protobuf351.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 = (37 * hash) + MAXIMUM_ITERATIONS_NAME_FIELD_NUMBER; hash = (53 * hash) + getMaximumIterationsName().hashCode(); if (getNestedContextsCount() > 0) { hash = (37 * hash) + NESTED_CONTEXTS_FIELD_NUMBER; hash = (53 * hash) + getNestedContextsList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.framework.WhileContextDef parseFrom( java.nio.ByteBuffer data) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.WhileContextDef parseFrom( java.nio.ByteBuffer data, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.framework.WhileContextDef parseFrom( com.github.os72.protobuf351.ByteString data) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.WhileContextDef parseFrom( com.github.os72.protobuf351.ByteString data, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.framework.WhileContextDef parseFrom(byte[] data) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.WhileContextDef parseFrom( byte[] data, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.framework.WhileContextDef parseFrom(java.io.InputStream input) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.framework.WhileContextDef parseFrom( java.io.InputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.framework.WhileContextDef parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.framework.WhileContextDef parseDelimitedFrom( java.io.InputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.framework.WhileContextDef parseFrom( com.github.os72.protobuf351.CodedInputStream input) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.framework.WhileContextDef parseFrom( com.github.os72.protobuf351.CodedInputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.github.os72.protobuf351.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.github.os72.protobuf351.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.github.os72.protobuf351.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.WhileContextDef) org.tensorflow.framework.WhileContextDefOrBuilder { public static final com.github.os72.protobuf351.Descriptors.Descriptor getDescriptor() { return org.tensorflow.framework.ControlFlowProtos.internal_static_tensorflow_WhileContextDef_descriptor; } protected com.github.os72.protobuf351.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.github.os72.protobuf351.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.github.os72.protobuf351.GeneratedMessageV3 .alwaysUseFieldBuilders) { getNestedContextsFieldBuilder(); } } public Builder clear() { super.clear(); contextName_ = ""; parallelIterations_ = 0; backProp_ = false; swapMemory_ = false; pivotName_ = ""; pivotForPredName_ = ""; pivotForBodyName_ = ""; loopExitNames_ = com.github.os72.protobuf351.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000080); loopEnterNames_ = com.github.os72.protobuf351.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000100); if (valuesDefBuilder_ == null) { valuesDef_ = null; } else { valuesDef_ = null; valuesDefBuilder_ = null; } maximumIterationsName_ = ""; if (nestedContextsBuilder_ == null) { nestedContexts_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000800); } else { nestedContextsBuilder_.clear(); } return this; } public com.github.os72.protobuf351.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.maximumIterationsName_ = maximumIterationsName_; if (nestedContextsBuilder_ == null) { if (((bitField0_ & 0x00000800) == 0x00000800)) { nestedContexts_ = java.util.Collections.unmodifiableList(nestedContexts_); bitField0_ = (bitField0_ & ~0x00000800); } result.nestedContexts_ = nestedContexts_; } else { result.nestedContexts_ = nestedContextsBuilder_.build(); } result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( com.github.os72.protobuf351.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.setField(field, value); } public Builder clearField( com.github.os72.protobuf351.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( com.github.os72.protobuf351.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( com.github.os72.protobuf351.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( com.github.os72.protobuf351.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.github.os72.protobuf351.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()); } if (!other.getMaximumIterationsName().isEmpty()) { maximumIterationsName_ = other.maximumIterationsName_; onChanged(); } if (nestedContextsBuilder_ == null) { if (!other.nestedContexts_.isEmpty()) { if (nestedContexts_.isEmpty()) { nestedContexts_ = other.nestedContexts_; bitField0_ = (bitField0_ & ~0x00000800); } else { ensureNestedContextsIsMutable(); nestedContexts_.addAll(other.nestedContexts_); } onChanged(); } } else { if (!other.nestedContexts_.isEmpty()) { if (nestedContextsBuilder_.isEmpty()) { nestedContextsBuilder_.dispose(); nestedContextsBuilder_ = null; nestedContexts_ = other.nestedContexts_; bitField0_ = (bitField0_ & ~0x00000800); nestedContextsBuilder_ = com.github.os72.protobuf351.GeneratedMessageV3.alwaysUseFieldBuilders ? getNestedContextsFieldBuilder() : null; } else { nestedContextsBuilder_.addAllMessages(other.nestedContexts_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.github.os72.protobuf351.CodedInputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { org.tensorflow.framework.WhileContextDef parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString getContextNameBytes() { java.lang.Object ref = contextName_; if (ref instanceof String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); contextName_ = b; return b; } else { return (com.github.os72.protobuf351.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.github.os72.protobuf351.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.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString getPivotNameBytes() { java.lang.Object ref = pivotName_; if (ref instanceof String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); pivotName_ = b; return b; } else { return (com.github.os72.protobuf351.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.github.os72.protobuf351.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.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString getPivotForPredNameBytes() { java.lang.Object ref = pivotForPredName_; if (ref instanceof String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); pivotForPredName_ = b; return b; } else { return (com.github.os72.protobuf351.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.github.os72.protobuf351.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.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString getPivotForBodyNameBytes() { java.lang.Object ref = pivotForBodyName_; if (ref instanceof String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); pivotForBodyName_ = b; return b; } else { return (com.github.os72.protobuf351.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.github.os72.protobuf351.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); pivotForBodyName_ = value; onChanged(); return this; } private com.github.os72.protobuf351.LazyStringList loopExitNames_ = com.github.os72.protobuf351.LazyStringArrayList.EMPTY; private void ensureLoopExitNamesIsMutable() { if (!((bitField0_ & 0x00000080) == 0x00000080)) { loopExitNames_ = new com.github.os72.protobuf351.LazyStringArrayList(loopExitNames_); bitField0_ |= 0x00000080; } } /** *
     * List of names for exit tensors.
     * 
* * repeated string loop_exit_names = 8; */ public com.github.os72.protobuf351.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.github.os72.protobuf351.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.github.os72.protobuf351.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.github.os72.protobuf351.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000080); onChanged(); return this; } /** *
     * List of names for exit tensors.
     * 
* * repeated string loop_exit_names = 8; */ public Builder addLoopExitNamesBytes( com.github.os72.protobuf351.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureLoopExitNamesIsMutable(); loopExitNames_.add(value); onChanged(); return this; } private com.github.os72.protobuf351.LazyStringList loopEnterNames_ = com.github.os72.protobuf351.LazyStringArrayList.EMPTY; private void ensureLoopEnterNamesIsMutable() { if (!((bitField0_ & 0x00000100) == 0x00000100)) { loopEnterNames_ = new com.github.os72.protobuf351.LazyStringArrayList(loopEnterNames_); bitField0_ |= 0x00000100; } } /** *
     * List of names for enter tensors.
     * 
* * repeated string loop_enter_names = 10; */ public com.github.os72.protobuf351.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.github.os72.protobuf351.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.github.os72.protobuf351.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.github.os72.protobuf351.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000100); onChanged(); return this; } /** *
     * List of names for enter tensors.
     * 
* * repeated string loop_enter_names = 10; */ public Builder addLoopEnterNamesBytes( com.github.os72.protobuf351.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.github.os72.protobuf351.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.github.os72.protobuf351.SingleFieldBuilderV3< org.tensorflow.framework.ValuesDef, org.tensorflow.framework.ValuesDef.Builder, org.tensorflow.framework.ValuesDefOrBuilder> getValuesDefFieldBuilder() { if (valuesDefBuilder_ == null) { valuesDefBuilder_ = new com.github.os72.protobuf351.SingleFieldBuilderV3< org.tensorflow.framework.ValuesDef, org.tensorflow.framework.ValuesDef.Builder, org.tensorflow.framework.ValuesDefOrBuilder>( getValuesDef(), getParentForChildren(), isClean()); valuesDef_ = null; } return valuesDefBuilder_; } private java.lang.Object maximumIterationsName_ = ""; /** *
     * Optional name of the maximum_iterations tensor.
     * 
* * string maximum_iterations_name = 11; */ public java.lang.String getMaximumIterationsName() { java.lang.Object ref = maximumIterationsName_; if (!(ref instanceof java.lang.String)) { com.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.ByteString) ref; java.lang.String s = bs.toStringUtf8(); maximumIterationsName_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Optional name of the maximum_iterations tensor.
     * 
* * string maximum_iterations_name = 11; */ public com.github.os72.protobuf351.ByteString getMaximumIterationsNameBytes() { java.lang.Object ref = maximumIterationsName_; if (ref instanceof String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); maximumIterationsName_ = b; return b; } else { return (com.github.os72.protobuf351.ByteString) ref; } } /** *
     * Optional name of the maximum_iterations tensor.
     * 
* * string maximum_iterations_name = 11; */ public Builder setMaximumIterationsName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } maximumIterationsName_ = value; onChanged(); return this; } /** *
     * Optional name of the maximum_iterations tensor.
     * 
* * string maximum_iterations_name = 11; */ public Builder clearMaximumIterationsName() { maximumIterationsName_ = getDefaultInstance().getMaximumIterationsName(); onChanged(); return this; } /** *
     * Optional name of the maximum_iterations tensor.
     * 
* * string maximum_iterations_name = 11; */ public Builder setMaximumIterationsNameBytes( com.github.os72.protobuf351.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); maximumIterationsName_ = value; onChanged(); return this; } private java.util.List nestedContexts_ = java.util.Collections.emptyList(); private void ensureNestedContextsIsMutable() { if (!((bitField0_ & 0x00000800) == 0x00000800)) { nestedContexts_ = new java.util.ArrayList(nestedContexts_); bitField0_ |= 0x00000800; } } private com.github.os72.protobuf351.RepeatedFieldBuilderV3< org.tensorflow.framework.ControlFlowContextDef, org.tensorflow.framework.ControlFlowContextDef.Builder, org.tensorflow.framework.ControlFlowContextDefOrBuilder> nestedContextsBuilder_; /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public java.util.List getNestedContextsList() { if (nestedContextsBuilder_ == null) { return java.util.Collections.unmodifiableList(nestedContexts_); } else { return nestedContextsBuilder_.getMessageList(); } } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public int getNestedContextsCount() { if (nestedContextsBuilder_ == null) { return nestedContexts_.size(); } else { return nestedContextsBuilder_.getCount(); } } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public org.tensorflow.framework.ControlFlowContextDef getNestedContexts(int index) { if (nestedContextsBuilder_ == null) { return nestedContexts_.get(index); } else { return nestedContextsBuilder_.getMessage(index); } } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public Builder setNestedContexts( int index, org.tensorflow.framework.ControlFlowContextDef value) { if (nestedContextsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureNestedContextsIsMutable(); nestedContexts_.set(index, value); onChanged(); } else { nestedContextsBuilder_.setMessage(index, value); } return this; } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public Builder setNestedContexts( int index, org.tensorflow.framework.ControlFlowContextDef.Builder builderForValue) { if (nestedContextsBuilder_ == null) { ensureNestedContextsIsMutable(); nestedContexts_.set(index, builderForValue.build()); onChanged(); } else { nestedContextsBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public Builder addNestedContexts(org.tensorflow.framework.ControlFlowContextDef value) { if (nestedContextsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureNestedContextsIsMutable(); nestedContexts_.add(value); onChanged(); } else { nestedContextsBuilder_.addMessage(value); } return this; } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public Builder addNestedContexts( int index, org.tensorflow.framework.ControlFlowContextDef value) { if (nestedContextsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureNestedContextsIsMutable(); nestedContexts_.add(index, value); onChanged(); } else { nestedContextsBuilder_.addMessage(index, value); } return this; } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public Builder addNestedContexts( org.tensorflow.framework.ControlFlowContextDef.Builder builderForValue) { if (nestedContextsBuilder_ == null) { ensureNestedContextsIsMutable(); nestedContexts_.add(builderForValue.build()); onChanged(); } else { nestedContextsBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public Builder addNestedContexts( int index, org.tensorflow.framework.ControlFlowContextDef.Builder builderForValue) { if (nestedContextsBuilder_ == null) { ensureNestedContextsIsMutable(); nestedContexts_.add(index, builderForValue.build()); onChanged(); } else { nestedContextsBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public Builder addAllNestedContexts( java.lang.Iterable values) { if (nestedContextsBuilder_ == null) { ensureNestedContextsIsMutable(); com.github.os72.protobuf351.AbstractMessageLite.Builder.addAll( values, nestedContexts_); onChanged(); } else { nestedContextsBuilder_.addAllMessages(values); } return this; } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public Builder clearNestedContexts() { if (nestedContextsBuilder_ == null) { nestedContexts_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000800); onChanged(); } else { nestedContextsBuilder_.clear(); } return this; } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public Builder removeNestedContexts(int index) { if (nestedContextsBuilder_ == null) { ensureNestedContextsIsMutable(); nestedContexts_.remove(index); onChanged(); } else { nestedContextsBuilder_.remove(index); } return this; } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public org.tensorflow.framework.ControlFlowContextDef.Builder getNestedContextsBuilder( int index) { return getNestedContextsFieldBuilder().getBuilder(index); } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public org.tensorflow.framework.ControlFlowContextDefOrBuilder getNestedContextsOrBuilder( int index) { if (nestedContextsBuilder_ == null) { return nestedContexts_.get(index); } else { return nestedContextsBuilder_.getMessageOrBuilder(index); } } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public java.util.List getNestedContextsOrBuilderList() { if (nestedContextsBuilder_ != null) { return nestedContextsBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(nestedContexts_); } } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public org.tensorflow.framework.ControlFlowContextDef.Builder addNestedContextsBuilder() { return getNestedContextsFieldBuilder().addBuilder( org.tensorflow.framework.ControlFlowContextDef.getDefaultInstance()); } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public org.tensorflow.framework.ControlFlowContextDef.Builder addNestedContextsBuilder( int index) { return getNestedContextsFieldBuilder().addBuilder( index, org.tensorflow.framework.ControlFlowContextDef.getDefaultInstance()); } /** *
     * Contexts contained inside this context (e.g. nested whiles).
     * 
* * repeated .tensorflow.ControlFlowContextDef nested_contexts = 12; */ public java.util.List getNestedContextsBuilderList() { return getNestedContextsFieldBuilder().getBuilderList(); } private com.github.os72.protobuf351.RepeatedFieldBuilderV3< org.tensorflow.framework.ControlFlowContextDef, org.tensorflow.framework.ControlFlowContextDef.Builder, org.tensorflow.framework.ControlFlowContextDefOrBuilder> getNestedContextsFieldBuilder() { if (nestedContextsBuilder_ == null) { nestedContextsBuilder_ = new com.github.os72.protobuf351.RepeatedFieldBuilderV3< org.tensorflow.framework.ControlFlowContextDef, org.tensorflow.framework.ControlFlowContextDef.Builder, org.tensorflow.framework.ControlFlowContextDefOrBuilder>( nestedContexts_, ((bitField0_ & 0x00000800) == 0x00000800), getParentForChildren(), isClean()); nestedContexts_ = null; } return nestedContextsBuilder_; } public final Builder setUnknownFields( final com.github.os72.protobuf351.UnknownFieldSet unknownFields) { return super.setUnknownFieldsProto3(unknownFields); } public final Builder mergeUnknownFields( final com.github.os72.protobuf351.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@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.github.os72.protobuf351.Parser PARSER = new com.github.os72.protobuf351.AbstractParser() { public WhileContextDef parsePartialFrom( com.github.os72.protobuf351.CodedInputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return new WhileContextDef(input, extensionRegistry); } }; public static com.github.os72.protobuf351.Parser parser() { return PARSER; } @java.lang.Override public com.github.os72.protobuf351.Parser getParserForType() { return PARSER; } public org.tensorflow.framework.WhileContextDef getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy