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

org.tensorflow.framework.MemoryStats 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;

/**
 * 
 * For memory tracking.
 * 
* * Protobuf type {@code tensorflow.MemoryStats} */ public final class MemoryStats extends org.nd4j.shade.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:tensorflow.MemoryStats) MemoryStatsOrBuilder { private static final long serialVersionUID = 0L; // Use MemoryStats.newBuilder() to construct. private MemoryStats(org.nd4j.shade.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private MemoryStats() { persistentTensorAllocIds_ = emptyLongList(); devicePersistentTensorAllocIds_ = emptyLongList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new MemoryStats(); } @java.lang.Override public final org.nd4j.shade.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private MemoryStats( org.nd4j.shade.protobuf.CodedInputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } int mutable_bitField0_ = 0; org.nd4j.shade.protobuf.UnknownFieldSet.Builder unknownFields = org.nd4j.shade.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 8: { tempMemorySize_ = input.readInt64(); break; } case 16: { deviceTempMemorySize_ = input.readInt64(); break; } case 24: { persistentMemorySize_ = input.readInt64(); break; } case 32: { devicePersistentMemorySize_ = input.readInt64(); break; } case 40: { if (!((mutable_bitField0_ & 0x00000001) != 0)) { persistentTensorAllocIds_ = newLongList(); mutable_bitField0_ |= 0x00000001; } persistentTensorAllocIds_.addLong(input.readInt64()); break; } case 42: { int length = input.readRawVarint32(); int limit = input.pushLimit(length); if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) { persistentTensorAllocIds_ = newLongList(); mutable_bitField0_ |= 0x00000001; } while (input.getBytesUntilLimit() > 0) { persistentTensorAllocIds_.addLong(input.readInt64()); } input.popLimit(limit); break; } case 48: { if (!((mutable_bitField0_ & 0x00000002) != 0)) { devicePersistentTensorAllocIds_ = newLongList(); mutable_bitField0_ |= 0x00000002; } devicePersistentTensorAllocIds_.addLong(input.readInt64()); break; } case 50: { int length = input.readRawVarint32(); int limit = input.pushLimit(length); if (!((mutable_bitField0_ & 0x00000002) != 0) && input.getBytesUntilLimit() > 0) { devicePersistentTensorAllocIds_ = newLongList(); mutable_bitField0_ |= 0x00000002; } while (input.getBytesUntilLimit() > 0) { devicePersistentTensorAllocIds_.addLong(input.readInt64()); } input.popLimit(limit); 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 { if (((mutable_bitField0_ & 0x00000001) != 0)) { persistentTensorAllocIds_.makeImmutable(); // C } if (((mutable_bitField0_ & 0x00000002) != 0)) { devicePersistentTensorAllocIds_.makeImmutable(); // C } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final org.nd4j.shade.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.framework.StepStatsProtos.internal_static_tensorflow_MemoryStats_descriptor; } @java.lang.Override protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.framework.StepStatsProtos.internal_static_tensorflow_MemoryStats_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.framework.MemoryStats.class, org.tensorflow.framework.MemoryStats.Builder.class); } public static final int TEMP_MEMORY_SIZE_FIELD_NUMBER = 1; private long tempMemorySize_; /** * int64 temp_memory_size = 1; * @return The tempMemorySize. */ @java.lang.Override public long getTempMemorySize() { return tempMemorySize_; } public static final int PERSISTENT_MEMORY_SIZE_FIELD_NUMBER = 3; private long persistentMemorySize_; /** * int64 persistent_memory_size = 3; * @return The persistentMemorySize. */ @java.lang.Override public long getPersistentMemorySize() { return persistentMemorySize_; } public static final int PERSISTENT_TENSOR_ALLOC_IDS_FIELD_NUMBER = 5; private org.nd4j.shade.protobuf.Internal.LongList persistentTensorAllocIds_; /** * repeated int64 persistent_tensor_alloc_ids = 5; * @return A list containing the persistentTensorAllocIds. */ @java.lang.Override public java.util.List getPersistentTensorAllocIdsList() { return persistentTensorAllocIds_; } /** * repeated int64 persistent_tensor_alloc_ids = 5; * @return The count of persistentTensorAllocIds. */ public int getPersistentTensorAllocIdsCount() { return persistentTensorAllocIds_.size(); } /** * repeated int64 persistent_tensor_alloc_ids = 5; * @param index The index of the element to return. * @return The persistentTensorAllocIds at the given index. */ public long getPersistentTensorAllocIds(int index) { return persistentTensorAllocIds_.getLong(index); } private int persistentTensorAllocIdsMemoizedSerializedSize = -1; public static final int DEVICE_TEMP_MEMORY_SIZE_FIELD_NUMBER = 2; private long deviceTempMemorySize_; /** * int64 device_temp_memory_size = 2 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_temp_memory_size is deprecated. * See tensorflow/core/framework/step_stats.proto;l=46 * @return The deviceTempMemorySize. */ @java.lang.Override @java.lang.Deprecated public long getDeviceTempMemorySize() { return deviceTempMemorySize_; } public static final int DEVICE_PERSISTENT_MEMORY_SIZE_FIELD_NUMBER = 4; private long devicePersistentMemorySize_; /** * int64 device_persistent_memory_size = 4 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_memory_size is deprecated. * See tensorflow/core/framework/step_stats.proto;l=47 * @return The devicePersistentMemorySize. */ @java.lang.Override @java.lang.Deprecated public long getDevicePersistentMemorySize() { return devicePersistentMemorySize_; } public static final int DEVICE_PERSISTENT_TENSOR_ALLOC_IDS_FIELD_NUMBER = 6; private org.nd4j.shade.protobuf.Internal.LongList devicePersistentTensorAllocIds_; /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @return A list containing the devicePersistentTensorAllocIds. */ @java.lang.Override @java.lang.Deprecated public java.util.List getDevicePersistentTensorAllocIdsList() { return devicePersistentTensorAllocIds_; } /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @return The count of devicePersistentTensorAllocIds. */ @java.lang.Deprecated public int getDevicePersistentTensorAllocIdsCount() { return devicePersistentTensorAllocIds_.size(); } /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @param index The index of the element to return. * @return The devicePersistentTensorAllocIds at the given index. */ @java.lang.Deprecated public long getDevicePersistentTensorAllocIds(int index) { return devicePersistentTensorAllocIds_.getLong(index); } private int devicePersistentTensorAllocIdsMemoizedSerializedSize = -1; 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 { getSerializedSize(); if (tempMemorySize_ != 0L) { output.writeInt64(1, tempMemorySize_); } if (deviceTempMemorySize_ != 0L) { output.writeInt64(2, deviceTempMemorySize_); } if (persistentMemorySize_ != 0L) { output.writeInt64(3, persistentMemorySize_); } if (devicePersistentMemorySize_ != 0L) { output.writeInt64(4, devicePersistentMemorySize_); } if (getPersistentTensorAllocIdsList().size() > 0) { output.writeUInt32NoTag(42); output.writeUInt32NoTag(persistentTensorAllocIdsMemoizedSerializedSize); } for (int i = 0; i < persistentTensorAllocIds_.size(); i++) { output.writeInt64NoTag(persistentTensorAllocIds_.getLong(i)); } if (getDevicePersistentTensorAllocIdsList().size() > 0) { output.writeUInt32NoTag(50); output.writeUInt32NoTag(devicePersistentTensorAllocIdsMemoizedSerializedSize); } for (int i = 0; i < devicePersistentTensorAllocIds_.size(); i++) { output.writeInt64NoTag(devicePersistentTensorAllocIds_.getLong(i)); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (tempMemorySize_ != 0L) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64Size(1, tempMemorySize_); } if (deviceTempMemorySize_ != 0L) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64Size(2, deviceTempMemorySize_); } if (persistentMemorySize_ != 0L) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64Size(3, persistentMemorySize_); } if (devicePersistentMemorySize_ != 0L) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64Size(4, devicePersistentMemorySize_); } { int dataSize = 0; for (int i = 0; i < persistentTensorAllocIds_.size(); i++) { dataSize += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64SizeNoTag(persistentTensorAllocIds_.getLong(i)); } size += dataSize; if (!getPersistentTensorAllocIdsList().isEmpty()) { size += 1; size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt32SizeNoTag(dataSize); } persistentTensorAllocIdsMemoizedSerializedSize = dataSize; } { int dataSize = 0; for (int i = 0; i < devicePersistentTensorAllocIds_.size(); i++) { dataSize += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64SizeNoTag(devicePersistentTensorAllocIds_.getLong(i)); } size += dataSize; if (!getDevicePersistentTensorAllocIdsList().isEmpty()) { size += 1; size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt32SizeNoTag(dataSize); } devicePersistentTensorAllocIdsMemoizedSerializedSize = dataSize; } 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.MemoryStats)) { return super.equals(obj); } org.tensorflow.framework.MemoryStats other = (org.tensorflow.framework.MemoryStats) obj; if (getTempMemorySize() != other.getTempMemorySize()) return false; if (getPersistentMemorySize() != other.getPersistentMemorySize()) return false; if (!getPersistentTensorAllocIdsList() .equals(other.getPersistentTensorAllocIdsList())) return false; if (getDeviceTempMemorySize() != other.getDeviceTempMemorySize()) return false; if (getDevicePersistentMemorySize() != other.getDevicePersistentMemorySize()) return false; if (!getDevicePersistentTensorAllocIdsList() .equals(other.getDevicePersistentTensorAllocIdsList())) 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) + TEMP_MEMORY_SIZE_FIELD_NUMBER; hash = (53 * hash) + org.nd4j.shade.protobuf.Internal.hashLong( getTempMemorySize()); hash = (37 * hash) + PERSISTENT_MEMORY_SIZE_FIELD_NUMBER; hash = (53 * hash) + org.nd4j.shade.protobuf.Internal.hashLong( getPersistentMemorySize()); if (getPersistentTensorAllocIdsCount() > 0) { hash = (37 * hash) + PERSISTENT_TENSOR_ALLOC_IDS_FIELD_NUMBER; hash = (53 * hash) + getPersistentTensorAllocIdsList().hashCode(); } hash = (37 * hash) + DEVICE_TEMP_MEMORY_SIZE_FIELD_NUMBER; hash = (53 * hash) + org.nd4j.shade.protobuf.Internal.hashLong( getDeviceTempMemorySize()); hash = (37 * hash) + DEVICE_PERSISTENT_MEMORY_SIZE_FIELD_NUMBER; hash = (53 * hash) + org.nd4j.shade.protobuf.Internal.hashLong( getDevicePersistentMemorySize()); if (getDevicePersistentTensorAllocIdsCount() > 0) { hash = (37 * hash) + DEVICE_PERSISTENT_TENSOR_ALLOC_IDS_FIELD_NUMBER; hash = (53 * hash) + getDevicePersistentTensorAllocIdsList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.framework.MemoryStats parseFrom( java.nio.ByteBuffer data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.MemoryStats 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.MemoryStats parseFrom( org.nd4j.shade.protobuf.ByteString data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.MemoryStats 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.MemoryStats parseFrom(byte[] data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.MemoryStats 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.MemoryStats parseFrom(java.io.InputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.framework.MemoryStats 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.MemoryStats parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.framework.MemoryStats 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.MemoryStats 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.MemoryStats 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.MemoryStats 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; } /** *
   * For memory tracking.
   * 
* * Protobuf type {@code tensorflow.MemoryStats} */ public static final class Builder extends org.nd4j.shade.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.MemoryStats) org.tensorflow.framework.MemoryStatsOrBuilder { public static final org.nd4j.shade.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.framework.StepStatsProtos.internal_static_tensorflow_MemoryStats_descriptor; } @java.lang.Override protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.framework.StepStatsProtos.internal_static_tensorflow_MemoryStats_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.framework.MemoryStats.class, org.tensorflow.framework.MemoryStats.Builder.class); } // Construct using org.tensorflow.framework.MemoryStats.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(); tempMemorySize_ = 0L; persistentMemorySize_ = 0L; persistentTensorAllocIds_ = emptyLongList(); bitField0_ = (bitField0_ & ~0x00000001); deviceTempMemorySize_ = 0L; devicePersistentMemorySize_ = 0L; devicePersistentTensorAllocIds_ = emptyLongList(); bitField0_ = (bitField0_ & ~0x00000002); return this; } @java.lang.Override public org.nd4j.shade.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.tensorflow.framework.StepStatsProtos.internal_static_tensorflow_MemoryStats_descriptor; } @java.lang.Override public org.tensorflow.framework.MemoryStats getDefaultInstanceForType() { return org.tensorflow.framework.MemoryStats.getDefaultInstance(); } @java.lang.Override public org.tensorflow.framework.MemoryStats build() { org.tensorflow.framework.MemoryStats result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.tensorflow.framework.MemoryStats buildPartial() { org.tensorflow.framework.MemoryStats result = new org.tensorflow.framework.MemoryStats(this); int from_bitField0_ = bitField0_; result.tempMemorySize_ = tempMemorySize_; result.persistentMemorySize_ = persistentMemorySize_; if (((bitField0_ & 0x00000001) != 0)) { persistentTensorAllocIds_.makeImmutable(); bitField0_ = (bitField0_ & ~0x00000001); } result.persistentTensorAllocIds_ = persistentTensorAllocIds_; result.deviceTempMemorySize_ = deviceTempMemorySize_; result.devicePersistentMemorySize_ = devicePersistentMemorySize_; if (((bitField0_ & 0x00000002) != 0)) { devicePersistentTensorAllocIds_.makeImmutable(); bitField0_ = (bitField0_ & ~0x00000002); } result.devicePersistentTensorAllocIds_ = devicePersistentTensorAllocIds_; 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.MemoryStats) { return mergeFrom((org.tensorflow.framework.MemoryStats)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.tensorflow.framework.MemoryStats other) { if (other == org.tensorflow.framework.MemoryStats.getDefaultInstance()) return this; if (other.getTempMemorySize() != 0L) { setTempMemorySize(other.getTempMemorySize()); } if (other.getPersistentMemorySize() != 0L) { setPersistentMemorySize(other.getPersistentMemorySize()); } if (!other.persistentTensorAllocIds_.isEmpty()) { if (persistentTensorAllocIds_.isEmpty()) { persistentTensorAllocIds_ = other.persistentTensorAllocIds_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensurePersistentTensorAllocIdsIsMutable(); persistentTensorAllocIds_.addAll(other.persistentTensorAllocIds_); } onChanged(); } if (other.getDeviceTempMemorySize() != 0L) { setDeviceTempMemorySize(other.getDeviceTempMemorySize()); } if (other.getDevicePersistentMemorySize() != 0L) { setDevicePersistentMemorySize(other.getDevicePersistentMemorySize()); } if (!other.devicePersistentTensorAllocIds_.isEmpty()) { if (devicePersistentTensorAllocIds_.isEmpty()) { devicePersistentTensorAllocIds_ = other.devicePersistentTensorAllocIds_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureDevicePersistentTensorAllocIdsIsMutable(); devicePersistentTensorAllocIds_.addAll(other.devicePersistentTensorAllocIds_); } onChanged(); } 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.MemoryStats parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.tensorflow.framework.MemoryStats) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private long tempMemorySize_ ; /** * int64 temp_memory_size = 1; * @return The tempMemorySize. */ @java.lang.Override public long getTempMemorySize() { return tempMemorySize_; } /** * int64 temp_memory_size = 1; * @param value The tempMemorySize to set. * @return This builder for chaining. */ public Builder setTempMemorySize(long value) { tempMemorySize_ = value; onChanged(); return this; } /** * int64 temp_memory_size = 1; * @return This builder for chaining. */ public Builder clearTempMemorySize() { tempMemorySize_ = 0L; onChanged(); return this; } private long persistentMemorySize_ ; /** * int64 persistent_memory_size = 3; * @return The persistentMemorySize. */ @java.lang.Override public long getPersistentMemorySize() { return persistentMemorySize_; } /** * int64 persistent_memory_size = 3; * @param value The persistentMemorySize to set. * @return This builder for chaining. */ public Builder setPersistentMemorySize(long value) { persistentMemorySize_ = value; onChanged(); return this; } /** * int64 persistent_memory_size = 3; * @return This builder for chaining. */ public Builder clearPersistentMemorySize() { persistentMemorySize_ = 0L; onChanged(); return this; } private org.nd4j.shade.protobuf.Internal.LongList persistentTensorAllocIds_ = emptyLongList(); private void ensurePersistentTensorAllocIdsIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { persistentTensorAllocIds_ = mutableCopy(persistentTensorAllocIds_); bitField0_ |= 0x00000001; } } /** * repeated int64 persistent_tensor_alloc_ids = 5; * @return A list containing the persistentTensorAllocIds. */ public java.util.List getPersistentTensorAllocIdsList() { return ((bitField0_ & 0x00000001) != 0) ? java.util.Collections.unmodifiableList(persistentTensorAllocIds_) : persistentTensorAllocIds_; } /** * repeated int64 persistent_tensor_alloc_ids = 5; * @return The count of persistentTensorAllocIds. */ public int getPersistentTensorAllocIdsCount() { return persistentTensorAllocIds_.size(); } /** * repeated int64 persistent_tensor_alloc_ids = 5; * @param index The index of the element to return. * @return The persistentTensorAllocIds at the given index. */ public long getPersistentTensorAllocIds(int index) { return persistentTensorAllocIds_.getLong(index); } /** * repeated int64 persistent_tensor_alloc_ids = 5; * @param index The index to set the value at. * @param value The persistentTensorAllocIds to set. * @return This builder for chaining. */ public Builder setPersistentTensorAllocIds( int index, long value) { ensurePersistentTensorAllocIdsIsMutable(); persistentTensorAllocIds_.setLong(index, value); onChanged(); return this; } /** * repeated int64 persistent_tensor_alloc_ids = 5; * @param value The persistentTensorAllocIds to add. * @return This builder for chaining. */ public Builder addPersistentTensorAllocIds(long value) { ensurePersistentTensorAllocIdsIsMutable(); persistentTensorAllocIds_.addLong(value); onChanged(); return this; } /** * repeated int64 persistent_tensor_alloc_ids = 5; * @param values The persistentTensorAllocIds to add. * @return This builder for chaining. */ public Builder addAllPersistentTensorAllocIds( java.lang.Iterable values) { ensurePersistentTensorAllocIdsIsMutable(); org.nd4j.shade.protobuf.AbstractMessageLite.Builder.addAll( values, persistentTensorAllocIds_); onChanged(); return this; } /** * repeated int64 persistent_tensor_alloc_ids = 5; * @return This builder for chaining. */ public Builder clearPersistentTensorAllocIds() { persistentTensorAllocIds_ = emptyLongList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } private long deviceTempMemorySize_ ; /** * int64 device_temp_memory_size = 2 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_temp_memory_size is deprecated. * See tensorflow/core/framework/step_stats.proto;l=46 * @return The deviceTempMemorySize. */ @java.lang.Override @java.lang.Deprecated public long getDeviceTempMemorySize() { return deviceTempMemorySize_; } /** * int64 device_temp_memory_size = 2 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_temp_memory_size is deprecated. * See tensorflow/core/framework/step_stats.proto;l=46 * @param value The deviceTempMemorySize to set. * @return This builder for chaining. */ @java.lang.Deprecated public Builder setDeviceTempMemorySize(long value) { deviceTempMemorySize_ = value; onChanged(); return this; } /** * int64 device_temp_memory_size = 2 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_temp_memory_size is deprecated. * See tensorflow/core/framework/step_stats.proto;l=46 * @return This builder for chaining. */ @java.lang.Deprecated public Builder clearDeviceTempMemorySize() { deviceTempMemorySize_ = 0L; onChanged(); return this; } private long devicePersistentMemorySize_ ; /** * int64 device_persistent_memory_size = 4 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_memory_size is deprecated. * See tensorflow/core/framework/step_stats.proto;l=47 * @return The devicePersistentMemorySize. */ @java.lang.Override @java.lang.Deprecated public long getDevicePersistentMemorySize() { return devicePersistentMemorySize_; } /** * int64 device_persistent_memory_size = 4 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_memory_size is deprecated. * See tensorflow/core/framework/step_stats.proto;l=47 * @param value The devicePersistentMemorySize to set. * @return This builder for chaining. */ @java.lang.Deprecated public Builder setDevicePersistentMemorySize(long value) { devicePersistentMemorySize_ = value; onChanged(); return this; } /** * int64 device_persistent_memory_size = 4 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_memory_size is deprecated. * See tensorflow/core/framework/step_stats.proto;l=47 * @return This builder for chaining. */ @java.lang.Deprecated public Builder clearDevicePersistentMemorySize() { devicePersistentMemorySize_ = 0L; onChanged(); return this; } private org.nd4j.shade.protobuf.Internal.LongList devicePersistentTensorAllocIds_ = emptyLongList(); private void ensureDevicePersistentTensorAllocIdsIsMutable() { if (!((bitField0_ & 0x00000002) != 0)) { devicePersistentTensorAllocIds_ = mutableCopy(devicePersistentTensorAllocIds_); bitField0_ |= 0x00000002; } } /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @return A list containing the devicePersistentTensorAllocIds. */ @java.lang.Deprecated public java.util.List getDevicePersistentTensorAllocIdsList() { return ((bitField0_ & 0x00000002) != 0) ? java.util.Collections.unmodifiableList(devicePersistentTensorAllocIds_) : devicePersistentTensorAllocIds_; } /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @return The count of devicePersistentTensorAllocIds. */ @java.lang.Deprecated public int getDevicePersistentTensorAllocIdsCount() { return devicePersistentTensorAllocIds_.size(); } /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @param index The index of the element to return. * @return The devicePersistentTensorAllocIds at the given index. */ @java.lang.Deprecated public long getDevicePersistentTensorAllocIds(int index) { return devicePersistentTensorAllocIds_.getLong(index); } /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @param index The index to set the value at. * @param value The devicePersistentTensorAllocIds to set. * @return This builder for chaining. */ @java.lang.Deprecated public Builder setDevicePersistentTensorAllocIds( int index, long value) { ensureDevicePersistentTensorAllocIdsIsMutable(); devicePersistentTensorAllocIds_.setLong(index, value); onChanged(); return this; } /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @param value The devicePersistentTensorAllocIds to add. * @return This builder for chaining. */ @java.lang.Deprecated public Builder addDevicePersistentTensorAllocIds(long value) { ensureDevicePersistentTensorAllocIdsIsMutable(); devicePersistentTensorAllocIds_.addLong(value); onChanged(); return this; } /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @param values The devicePersistentTensorAllocIds to add. * @return This builder for chaining. */ @java.lang.Deprecated public Builder addAllDevicePersistentTensorAllocIds( java.lang.Iterable values) { ensureDevicePersistentTensorAllocIdsIsMutable(); org.nd4j.shade.protobuf.AbstractMessageLite.Builder.addAll( values, devicePersistentTensorAllocIds_); onChanged(); return this; } /** * repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true]; * @deprecated tensorflow.MemoryStats.device_persistent_tensor_alloc_ids is deprecated. * See tensorflow/core/framework/step_stats.proto;l=48 * @return This builder for chaining. */ @java.lang.Deprecated public Builder clearDevicePersistentTensorAllocIds() { devicePersistentTensorAllocIds_ = emptyLongList(); bitField0_ = (bitField0_ & ~0x00000002); 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.MemoryStats) } // @@protoc_insertion_point(class_scope:tensorflow.MemoryStats) private static final org.tensorflow.framework.MemoryStats DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.tensorflow.framework.MemoryStats(); } public static org.tensorflow.framework.MemoryStats getDefaultInstance() { return DEFAULT_INSTANCE; } private static final org.nd4j.shade.protobuf.Parser PARSER = new org.nd4j.shade.protobuf.AbstractParser() { @java.lang.Override public MemoryStats parsePartialFrom( org.nd4j.shade.protobuf.CodedInputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return new MemoryStats(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.MemoryStats getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy