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

org.tensorflow.framework.AllocationRecord Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/framework/step_stats.proto

package org.tensorflow.framework;

/**
 * 
 * An allocation/de-allocation operation performed by the allocator.
 * 
* * Protobuf type {@code tensorflow.AllocationRecord} */ public final class AllocationRecord extends org.nd4j.shade.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:tensorflow.AllocationRecord) AllocationRecordOrBuilder { private static final long serialVersionUID = 0L; // Use AllocationRecord.newBuilder() to construct. private AllocationRecord(org.nd4j.shade.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private AllocationRecord() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new AllocationRecord(); } @java.lang.Override public final org.nd4j.shade.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private AllocationRecord( 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: { allocMicros_ = input.readInt64(); break; } case 16: { allocBytes_ = input.readInt64(); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (org.nd4j.shade.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().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.StepStatsProtos.internal_static_tensorflow_AllocationRecord_descriptor; } @java.lang.Override protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.framework.StepStatsProtos.internal_static_tensorflow_AllocationRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.framework.AllocationRecord.class, org.tensorflow.framework.AllocationRecord.Builder.class); } public static final int ALLOC_MICROS_FIELD_NUMBER = 1; private long allocMicros_; /** *
   * The timestamp of the operation.
   * 
* * int64 alloc_micros = 1; * @return The allocMicros. */ @java.lang.Override public long getAllocMicros() { return allocMicros_; } public static final int ALLOC_BYTES_FIELD_NUMBER = 2; private long allocBytes_; /** *
   * Number of bytes allocated, or de-allocated if negative.
   * 
* * int64 alloc_bytes = 2; * @return The allocBytes. */ @java.lang.Override public long getAllocBytes() { return allocBytes_; } 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 (allocMicros_ != 0L) { output.writeInt64(1, allocMicros_); } if (allocBytes_ != 0L) { output.writeInt64(2, allocBytes_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (allocMicros_ != 0L) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64Size(1, allocMicros_); } if (allocBytes_ != 0L) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64Size(2, allocBytes_); } 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.AllocationRecord)) { return super.equals(obj); } org.tensorflow.framework.AllocationRecord other = (org.tensorflow.framework.AllocationRecord) obj; if (getAllocMicros() != other.getAllocMicros()) return false; if (getAllocBytes() != other.getAllocBytes()) 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) + ALLOC_MICROS_FIELD_NUMBER; hash = (53 * hash) + org.nd4j.shade.protobuf.Internal.hashLong( getAllocMicros()); hash = (37 * hash) + ALLOC_BYTES_FIELD_NUMBER; hash = (53 * hash) + org.nd4j.shade.protobuf.Internal.hashLong( getAllocBytes()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.framework.AllocationRecord parseFrom( java.nio.ByteBuffer data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.AllocationRecord 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.AllocationRecord parseFrom( org.nd4j.shade.protobuf.ByteString data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.AllocationRecord 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.AllocationRecord parseFrom(byte[] data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.AllocationRecord 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.AllocationRecord parseFrom(java.io.InputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.framework.AllocationRecord 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.AllocationRecord parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.framework.AllocationRecord 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.AllocationRecord 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.AllocationRecord 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.AllocationRecord 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; } /** *
   * An allocation/de-allocation operation performed by the allocator.
   * 
* * Protobuf type {@code tensorflow.AllocationRecord} */ public static final class Builder extends org.nd4j.shade.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.AllocationRecord) org.tensorflow.framework.AllocationRecordOrBuilder { public static final org.nd4j.shade.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.framework.StepStatsProtos.internal_static_tensorflow_AllocationRecord_descriptor; } @java.lang.Override protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.framework.StepStatsProtos.internal_static_tensorflow_AllocationRecord_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.framework.AllocationRecord.class, org.tensorflow.framework.AllocationRecord.Builder.class); } // Construct using org.tensorflow.framework.AllocationRecord.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(); allocMicros_ = 0L; allocBytes_ = 0L; return this; } @java.lang.Override public org.nd4j.shade.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.tensorflow.framework.StepStatsProtos.internal_static_tensorflow_AllocationRecord_descriptor; } @java.lang.Override public org.tensorflow.framework.AllocationRecord getDefaultInstanceForType() { return org.tensorflow.framework.AllocationRecord.getDefaultInstance(); } @java.lang.Override public org.tensorflow.framework.AllocationRecord build() { org.tensorflow.framework.AllocationRecord result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.tensorflow.framework.AllocationRecord buildPartial() { org.tensorflow.framework.AllocationRecord result = new org.tensorflow.framework.AllocationRecord(this); result.allocMicros_ = allocMicros_; result.allocBytes_ = allocBytes_; 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.AllocationRecord) { return mergeFrom((org.tensorflow.framework.AllocationRecord)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.tensorflow.framework.AllocationRecord other) { if (other == org.tensorflow.framework.AllocationRecord.getDefaultInstance()) return this; if (other.getAllocMicros() != 0L) { setAllocMicros(other.getAllocMicros()); } if (other.getAllocBytes() != 0L) { setAllocBytes(other.getAllocBytes()); } 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.AllocationRecord parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.tensorflow.framework.AllocationRecord) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private long allocMicros_ ; /** *
     * The timestamp of the operation.
     * 
* * int64 alloc_micros = 1; * @return The allocMicros. */ @java.lang.Override public long getAllocMicros() { return allocMicros_; } /** *
     * The timestamp of the operation.
     * 
* * int64 alloc_micros = 1; * @param value The allocMicros to set. * @return This builder for chaining. */ public Builder setAllocMicros(long value) { allocMicros_ = value; onChanged(); return this; } /** *
     * The timestamp of the operation.
     * 
* * int64 alloc_micros = 1; * @return This builder for chaining. */ public Builder clearAllocMicros() { allocMicros_ = 0L; onChanged(); return this; } private long allocBytes_ ; /** *
     * Number of bytes allocated, or de-allocated if negative.
     * 
* * int64 alloc_bytes = 2; * @return The allocBytes. */ @java.lang.Override public long getAllocBytes() { return allocBytes_; } /** *
     * Number of bytes allocated, or de-allocated if negative.
     * 
* * int64 alloc_bytes = 2; * @param value The allocBytes to set. * @return This builder for chaining. */ public Builder setAllocBytes(long value) { allocBytes_ = value; onChanged(); return this; } /** *
     * Number of bytes allocated, or de-allocated if negative.
     * 
* * int64 alloc_bytes = 2; * @return This builder for chaining. */ public Builder clearAllocBytes() { allocBytes_ = 0L; onChanged(); return this; } @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.AllocationRecord) } // @@protoc_insertion_point(class_scope:tensorflow.AllocationRecord) private static final org.tensorflow.framework.AllocationRecord DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.tensorflow.framework.AllocationRecord(); } public static org.tensorflow.framework.AllocationRecord getDefaultInstance() { return DEFAULT_INSTANCE; } private static final org.nd4j.shade.protobuf.Parser PARSER = new org.nd4j.shade.protobuf.AbstractParser() { @java.lang.Override public AllocationRecord parsePartialFrom( org.nd4j.shade.protobuf.CodedInputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return new AllocationRecord(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.AllocationRecord getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy