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

org.tensorflow.framework.TensorDescription 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/framework/tensor_description.proto

package org.tensorflow.framework;

/**
 * Protobuf type {@code tensorflow.TensorDescription}
 */
public final class TensorDescription extends
    org.nd4j.shade.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:tensorflow.TensorDescription)
    TensorDescriptionOrBuilder {
private static final long serialVersionUID = 0L;
  // Use TensorDescription.newBuilder() to construct.
  private TensorDescription(org.nd4j.shade.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private TensorDescription() {
    dtype_ = 0;
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new TensorDescription();
  }

  @java.lang.Override
  public final org.nd4j.shade.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private TensorDescription(
      org.nd4j.shade.protobuf.CodedInputStream input,
      org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
      throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
    this();
    if (extensionRegistry == null) {
      throw new java.lang.NullPointerException();
    }
    org.nd4j.shade.protobuf.UnknownFieldSet.Builder unknownFields =
        org.nd4j.shade.protobuf.UnknownFieldSet.newBuilder();
    try {
      boolean done = false;
      while (!done) {
        int tag = input.readTag();
        switch (tag) {
          case 0:
            done = true;
            break;
          case 8: {
            int rawValue = input.readEnum();

            dtype_ = rawValue;
            break;
          }
          case 18: {
            org.tensorflow.framework.TensorShapeProto.Builder subBuilder = null;
            if (shape_ != null) {
              subBuilder = shape_.toBuilder();
            }
            shape_ = input.readMessage(org.tensorflow.framework.TensorShapeProto.parser(), extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(shape_);
              shape_ = subBuilder.buildPartial();
            }

            break;
          }
          case 34: {
            org.tensorflow.framework.AllocationDescription.Builder subBuilder = null;
            if (allocationDescription_ != null) {
              subBuilder = allocationDescription_.toBuilder();
            }
            allocationDescription_ = input.readMessage(org.tensorflow.framework.AllocationDescription.parser(), extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(allocationDescription_);
              allocationDescription_ = subBuilder.buildPartial();
            }

            break;
          }
          default: {
            if (!parseUnknownField(
                input, unknownFields, extensionRegistry, tag)) {
              done = true;
            }
            break;
          }
        }
      }
    } catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) {
      throw e.setUnfinishedMessage(this);
    } catch (java.io.IOException e) {
      throw new org.nd4j.shade.protobuf.InvalidProtocolBufferException(
          e).setUnfinishedMessage(this);
    } finally {
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final org.nd4j.shade.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return org.tensorflow.framework.TensorDescriptionProtos.internal_static_tensorflow_TensorDescription_descriptor;
  }

  @java.lang.Override
  protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return org.tensorflow.framework.TensorDescriptionProtos.internal_static_tensorflow_TensorDescription_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            org.tensorflow.framework.TensorDescription.class, org.tensorflow.framework.TensorDescription.Builder.class);
  }

  public static final int DTYPE_FIELD_NUMBER = 1;
  private int dtype_;
  /**
   * 
   * Data type of tensor elements
   * 
* * .tensorflow.DataType dtype = 1; * @return The enum numeric value on the wire for dtype. */ @java.lang.Override public int getDtypeValue() { return dtype_; } /** *
   * Data type of tensor elements
   * 
* * .tensorflow.DataType dtype = 1; * @return The dtype. */ @java.lang.Override public org.tensorflow.framework.DataType getDtype() { @SuppressWarnings("deprecation") org.tensorflow.framework.DataType result = org.tensorflow.framework.DataType.valueOf(dtype_); return result == null ? org.tensorflow.framework.DataType.UNRECOGNIZED : result; } public static final int SHAPE_FIELD_NUMBER = 2; private org.tensorflow.framework.TensorShapeProto shape_; /** *
   * Shape of the tensor.
   * 
* * .tensorflow.TensorShapeProto shape = 2; * @return Whether the shape field is set. */ @java.lang.Override public boolean hasShape() { return shape_ != null; } /** *
   * Shape of the tensor.
   * 
* * .tensorflow.TensorShapeProto shape = 2; * @return The shape. */ @java.lang.Override public org.tensorflow.framework.TensorShapeProto getShape() { return shape_ == null ? org.tensorflow.framework.TensorShapeProto.getDefaultInstance() : shape_; } /** *
   * Shape of the tensor.
   * 
* * .tensorflow.TensorShapeProto shape = 2; */ @java.lang.Override public org.tensorflow.framework.TensorShapeProtoOrBuilder getShapeOrBuilder() { return getShape(); } public static final int ALLOCATION_DESCRIPTION_FIELD_NUMBER = 4; private org.tensorflow.framework.AllocationDescription allocationDescription_; /** *
   * Information about the size and allocator used for the data
   * 
* * .tensorflow.AllocationDescription allocation_description = 4; * @return Whether the allocationDescription field is set. */ @java.lang.Override public boolean hasAllocationDescription() { return allocationDescription_ != null; } /** *
   * Information about the size and allocator used for the data
   * 
* * .tensorflow.AllocationDescription allocation_description = 4; * @return The allocationDescription. */ @java.lang.Override public org.tensorflow.framework.AllocationDescription getAllocationDescription() { return allocationDescription_ == null ? org.tensorflow.framework.AllocationDescription.getDefaultInstance() : allocationDescription_; } /** *
   * Information about the size and allocator used for the data
   * 
* * .tensorflow.AllocationDescription allocation_description = 4; */ @java.lang.Override public org.tensorflow.framework.AllocationDescriptionOrBuilder getAllocationDescriptionOrBuilder() { return getAllocationDescription(); } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(org.nd4j.shade.protobuf.CodedOutputStream output) throws java.io.IOException { if (dtype_ != org.tensorflow.framework.DataType.DT_INVALID.getNumber()) { output.writeEnum(1, dtype_); } if (shape_ != null) { output.writeMessage(2, getShape()); } if (allocationDescription_ != null) { output.writeMessage(4, getAllocationDescription()); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (dtype_ != org.tensorflow.framework.DataType.DT_INVALID.getNumber()) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeEnumSize(1, dtype_); } if (shape_ != null) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeMessageSize(2, getShape()); } if (allocationDescription_ != null) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeMessageSize(4, getAllocationDescription()); } 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.TensorDescription)) { return super.equals(obj); } org.tensorflow.framework.TensorDescription other = (org.tensorflow.framework.TensorDescription) obj; if (dtype_ != other.dtype_) return false; if (hasShape() != other.hasShape()) return false; if (hasShape()) { if (!getShape() .equals(other.getShape())) return false; } if (hasAllocationDescription() != other.hasAllocationDescription()) return false; if (hasAllocationDescription()) { if (!getAllocationDescription() .equals(other.getAllocationDescription())) return false; } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + DTYPE_FIELD_NUMBER; hash = (53 * hash) + dtype_; if (hasShape()) { hash = (37 * hash) + SHAPE_FIELD_NUMBER; hash = (53 * hash) + getShape().hashCode(); } if (hasAllocationDescription()) { hash = (37 * hash) + ALLOCATION_DESCRIPTION_FIELD_NUMBER; hash = (53 * hash) + getAllocationDescription().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.framework.TensorDescription parseFrom( java.nio.ByteBuffer data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.TensorDescription parseFrom( java.nio.ByteBuffer data, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.framework.TensorDescription parseFrom( org.nd4j.shade.protobuf.ByteString data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.TensorDescription parseFrom( org.nd4j.shade.protobuf.ByteString data, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.framework.TensorDescription parseFrom(byte[] data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.TensorDescription parseFrom( byte[] data, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.framework.TensorDescription parseFrom(java.io.InputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.framework.TensorDescription parseFrom( java.io.InputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.framework.TensorDescription parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.framework.TensorDescription parseDelimitedFrom( java.io.InputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.framework.TensorDescription parseFrom( org.nd4j.shade.protobuf.CodedInputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.framework.TensorDescription parseFrom( org.nd4j.shade.protobuf.CodedInputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(org.tensorflow.framework.TensorDescription prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( org.nd4j.shade.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code tensorflow.TensorDescription} */ public static final class Builder extends org.nd4j.shade.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.TensorDescription) org.tensorflow.framework.TensorDescriptionOrBuilder { public static final org.nd4j.shade.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.framework.TensorDescriptionProtos.internal_static_tensorflow_TensorDescription_descriptor; } @java.lang.Override protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.framework.TensorDescriptionProtos.internal_static_tensorflow_TensorDescription_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.framework.TensorDescription.class, org.tensorflow.framework.TensorDescription.Builder.class); } // Construct using org.tensorflow.framework.TensorDescription.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( org.nd4j.shade.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (org.nd4j.shade.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); dtype_ = 0; if (shapeBuilder_ == null) { shape_ = null; } else { shape_ = null; shapeBuilder_ = null; } if (allocationDescriptionBuilder_ == null) { allocationDescription_ = null; } else { allocationDescription_ = null; allocationDescriptionBuilder_ = null; } return this; } @java.lang.Override public org.nd4j.shade.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.tensorflow.framework.TensorDescriptionProtos.internal_static_tensorflow_TensorDescription_descriptor; } @java.lang.Override public org.tensorflow.framework.TensorDescription getDefaultInstanceForType() { return org.tensorflow.framework.TensorDescription.getDefaultInstance(); } @java.lang.Override public org.tensorflow.framework.TensorDescription build() { org.tensorflow.framework.TensorDescription result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.tensorflow.framework.TensorDescription buildPartial() { org.tensorflow.framework.TensorDescription result = new org.tensorflow.framework.TensorDescription(this); result.dtype_ = dtype_; if (shapeBuilder_ == null) { result.shape_ = shape_; } else { result.shape_ = shapeBuilder_.build(); } if (allocationDescriptionBuilder_ == null) { result.allocationDescription_ = allocationDescription_; } else { result.allocationDescription_ = allocationDescriptionBuilder_.build(); } onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( org.nd4j.shade.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(org.nd4j.shade.protobuf.Message other) { if (other instanceof org.tensorflow.framework.TensorDescription) { return mergeFrom((org.tensorflow.framework.TensorDescription)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.tensorflow.framework.TensorDescription other) { if (other == org.tensorflow.framework.TensorDescription.getDefaultInstance()) return this; if (other.dtype_ != 0) { setDtypeValue(other.getDtypeValue()); } if (other.hasShape()) { mergeShape(other.getShape()); } if (other.hasAllocationDescription()) { mergeAllocationDescription(other.getAllocationDescription()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( org.nd4j.shade.protobuf.CodedInputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { org.tensorflow.framework.TensorDescription parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.tensorflow.framework.TensorDescription) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int dtype_ = 0; /** *
     * Data type of tensor elements
     * 
* * .tensorflow.DataType dtype = 1; * @return The enum numeric value on the wire for dtype. */ @java.lang.Override public int getDtypeValue() { return dtype_; } /** *
     * Data type of tensor elements
     * 
* * .tensorflow.DataType dtype = 1; * @param value The enum numeric value on the wire for dtype to set. * @return This builder for chaining. */ public Builder setDtypeValue(int value) { dtype_ = value; onChanged(); return this; } /** *
     * Data type of tensor elements
     * 
* * .tensorflow.DataType dtype = 1; * @return The dtype. */ @java.lang.Override public org.tensorflow.framework.DataType getDtype() { @SuppressWarnings("deprecation") org.tensorflow.framework.DataType result = org.tensorflow.framework.DataType.valueOf(dtype_); return result == null ? org.tensorflow.framework.DataType.UNRECOGNIZED : result; } /** *
     * Data type of tensor elements
     * 
* * .tensorflow.DataType dtype = 1; * @param value The dtype to set. * @return This builder for chaining. */ public Builder setDtype(org.tensorflow.framework.DataType value) { if (value == null) { throw new NullPointerException(); } dtype_ = value.getNumber(); onChanged(); return this; } /** *
     * Data type of tensor elements
     * 
* * .tensorflow.DataType dtype = 1; * @return This builder for chaining. */ public Builder clearDtype() { dtype_ = 0; onChanged(); return this; } private org.tensorflow.framework.TensorShapeProto shape_; private org.nd4j.shade.protobuf.SingleFieldBuilderV3< org.tensorflow.framework.TensorShapeProto, org.tensorflow.framework.TensorShapeProto.Builder, org.tensorflow.framework.TensorShapeProtoOrBuilder> shapeBuilder_; /** *
     * Shape of the tensor.
     * 
* * .tensorflow.TensorShapeProto shape = 2; * @return Whether the shape field is set. */ public boolean hasShape() { return shapeBuilder_ != null || shape_ != null; } /** *
     * Shape of the tensor.
     * 
* * .tensorflow.TensorShapeProto shape = 2; * @return The shape. */ public org.tensorflow.framework.TensorShapeProto getShape() { if (shapeBuilder_ == null) { return shape_ == null ? org.tensorflow.framework.TensorShapeProto.getDefaultInstance() : shape_; } else { return shapeBuilder_.getMessage(); } } /** *
     * Shape of the tensor.
     * 
* * .tensorflow.TensorShapeProto shape = 2; */ public Builder setShape(org.tensorflow.framework.TensorShapeProto value) { if (shapeBuilder_ == null) { if (value == null) { throw new NullPointerException(); } shape_ = value; onChanged(); } else { shapeBuilder_.setMessage(value); } return this; } /** *
     * Shape of the tensor.
     * 
* * .tensorflow.TensorShapeProto shape = 2; */ public Builder setShape( org.tensorflow.framework.TensorShapeProto.Builder builderForValue) { if (shapeBuilder_ == null) { shape_ = builderForValue.build(); onChanged(); } else { shapeBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Shape of the tensor.
     * 
* * .tensorflow.TensorShapeProto shape = 2; */ public Builder mergeShape(org.tensorflow.framework.TensorShapeProto value) { if (shapeBuilder_ == null) { if (shape_ != null) { shape_ = org.tensorflow.framework.TensorShapeProto.newBuilder(shape_).mergeFrom(value).buildPartial(); } else { shape_ = value; } onChanged(); } else { shapeBuilder_.mergeFrom(value); } return this; } /** *
     * Shape of the tensor.
     * 
* * .tensorflow.TensorShapeProto shape = 2; */ public Builder clearShape() { if (shapeBuilder_ == null) { shape_ = null; onChanged(); } else { shape_ = null; shapeBuilder_ = null; } return this; } /** *
     * Shape of the tensor.
     * 
* * .tensorflow.TensorShapeProto shape = 2; */ public org.tensorflow.framework.TensorShapeProto.Builder getShapeBuilder() { onChanged(); return getShapeFieldBuilder().getBuilder(); } /** *
     * Shape of the tensor.
     * 
* * .tensorflow.TensorShapeProto shape = 2; */ public org.tensorflow.framework.TensorShapeProtoOrBuilder getShapeOrBuilder() { if (shapeBuilder_ != null) { return shapeBuilder_.getMessageOrBuilder(); } else { return shape_ == null ? org.tensorflow.framework.TensorShapeProto.getDefaultInstance() : shape_; } } /** *
     * Shape of the tensor.
     * 
* * .tensorflow.TensorShapeProto shape = 2; */ private org.nd4j.shade.protobuf.SingleFieldBuilderV3< org.tensorflow.framework.TensorShapeProto, org.tensorflow.framework.TensorShapeProto.Builder, org.tensorflow.framework.TensorShapeProtoOrBuilder> getShapeFieldBuilder() { if (shapeBuilder_ == null) { shapeBuilder_ = new org.nd4j.shade.protobuf.SingleFieldBuilderV3< org.tensorflow.framework.TensorShapeProto, org.tensorflow.framework.TensorShapeProto.Builder, org.tensorflow.framework.TensorShapeProtoOrBuilder>( getShape(), getParentForChildren(), isClean()); shape_ = null; } return shapeBuilder_; } private org.tensorflow.framework.AllocationDescription allocationDescription_; private org.nd4j.shade.protobuf.SingleFieldBuilderV3< org.tensorflow.framework.AllocationDescription, org.tensorflow.framework.AllocationDescription.Builder, org.tensorflow.framework.AllocationDescriptionOrBuilder> allocationDescriptionBuilder_; /** *
     * Information about the size and allocator used for the data
     * 
* * .tensorflow.AllocationDescription allocation_description = 4; * @return Whether the allocationDescription field is set. */ public boolean hasAllocationDescription() { return allocationDescriptionBuilder_ != null || allocationDescription_ != null; } /** *
     * Information about the size and allocator used for the data
     * 
* * .tensorflow.AllocationDescription allocation_description = 4; * @return The allocationDescription. */ public org.tensorflow.framework.AllocationDescription getAllocationDescription() { if (allocationDescriptionBuilder_ == null) { return allocationDescription_ == null ? org.tensorflow.framework.AllocationDescription.getDefaultInstance() : allocationDescription_; } else { return allocationDescriptionBuilder_.getMessage(); } } /** *
     * Information about the size and allocator used for the data
     * 
* * .tensorflow.AllocationDescription allocation_description = 4; */ public Builder setAllocationDescription(org.tensorflow.framework.AllocationDescription value) { if (allocationDescriptionBuilder_ == null) { if (value == null) { throw new NullPointerException(); } allocationDescription_ = value; onChanged(); } else { allocationDescriptionBuilder_.setMessage(value); } return this; } /** *
     * Information about the size and allocator used for the data
     * 
* * .tensorflow.AllocationDescription allocation_description = 4; */ public Builder setAllocationDescription( org.tensorflow.framework.AllocationDescription.Builder builderForValue) { if (allocationDescriptionBuilder_ == null) { allocationDescription_ = builderForValue.build(); onChanged(); } else { allocationDescriptionBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * Information about the size and allocator used for the data
     * 
* * .tensorflow.AllocationDescription allocation_description = 4; */ public Builder mergeAllocationDescription(org.tensorflow.framework.AllocationDescription value) { if (allocationDescriptionBuilder_ == null) { if (allocationDescription_ != null) { allocationDescription_ = org.tensorflow.framework.AllocationDescription.newBuilder(allocationDescription_).mergeFrom(value).buildPartial(); } else { allocationDescription_ = value; } onChanged(); } else { allocationDescriptionBuilder_.mergeFrom(value); } return this; } /** *
     * Information about the size and allocator used for the data
     * 
* * .tensorflow.AllocationDescription allocation_description = 4; */ public Builder clearAllocationDescription() { if (allocationDescriptionBuilder_ == null) { allocationDescription_ = null; onChanged(); } else { allocationDescription_ = null; allocationDescriptionBuilder_ = null; } return this; } /** *
     * Information about the size and allocator used for the data
     * 
* * .tensorflow.AllocationDescription allocation_description = 4; */ public org.tensorflow.framework.AllocationDescription.Builder getAllocationDescriptionBuilder() { onChanged(); return getAllocationDescriptionFieldBuilder().getBuilder(); } /** *
     * Information about the size and allocator used for the data
     * 
* * .tensorflow.AllocationDescription allocation_description = 4; */ public org.tensorflow.framework.AllocationDescriptionOrBuilder getAllocationDescriptionOrBuilder() { if (allocationDescriptionBuilder_ != null) { return allocationDescriptionBuilder_.getMessageOrBuilder(); } else { return allocationDescription_ == null ? org.tensorflow.framework.AllocationDescription.getDefaultInstance() : allocationDescription_; } } /** *
     * Information about the size and allocator used for the data
     * 
* * .tensorflow.AllocationDescription allocation_description = 4; */ private org.nd4j.shade.protobuf.SingleFieldBuilderV3< org.tensorflow.framework.AllocationDescription, org.tensorflow.framework.AllocationDescription.Builder, org.tensorflow.framework.AllocationDescriptionOrBuilder> getAllocationDescriptionFieldBuilder() { if (allocationDescriptionBuilder_ == null) { allocationDescriptionBuilder_ = new org.nd4j.shade.protobuf.SingleFieldBuilderV3< org.tensorflow.framework.AllocationDescription, org.tensorflow.framework.AllocationDescription.Builder, org.tensorflow.framework.AllocationDescriptionOrBuilder>( getAllocationDescription(), getParentForChildren(), isClean()); allocationDescription_ = null; } return allocationDescriptionBuilder_; } @java.lang.Override public final Builder setUnknownFields( final org.nd4j.shade.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final org.nd4j.shade.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:tensorflow.TensorDescription) } // @@protoc_insertion_point(class_scope:tensorflow.TensorDescription) private static final org.tensorflow.framework.TensorDescription DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.tensorflow.framework.TensorDescription(); } public static org.tensorflow.framework.TensorDescription getDefaultInstance() { return DEFAULT_INSTANCE; } private static final org.nd4j.shade.protobuf.Parser PARSER = new org.nd4j.shade.protobuf.AbstractParser() { @java.lang.Override public TensorDescription parsePartialFrom( org.nd4j.shade.protobuf.CodedInputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return new TensorDescription(input, extensionRegistry); } }; public static org.nd4j.shade.protobuf.Parser parser() { return PARSER; } @java.lang.Override public org.nd4j.shade.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public org.tensorflow.framework.TensorDescription getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy