org.tensorflow.framework.MemoryStatsOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/framework/step_stats.proto
package org.tensorflow.framework;
public interface MemoryStatsOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.MemoryStats)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
* int64 temp_memory_size = 1;
*/
long getTempMemorySize();
/**
* int64 persistent_memory_size = 3;
*/
long getPersistentMemorySize();
/**
* repeated int64 persistent_tensor_alloc_ids = 5;
*/
java.util.List getPersistentTensorAllocIdsList();
/**
* repeated int64 persistent_tensor_alloc_ids = 5;
*/
int getPersistentTensorAllocIdsCount();
/**
* repeated int64 persistent_tensor_alloc_ids = 5;
*/
long getPersistentTensorAllocIds(int index);
/**
* int64 device_temp_memory_size = 2 [deprecated = true];
*/
@java.lang.Deprecated long getDeviceTempMemorySize();
/**
* int64 device_persistent_memory_size = 4 [deprecated = true];
*/
@java.lang.Deprecated long getDevicePersistentMemorySize();
/**
* repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true];
*/
@java.lang.Deprecated java.util.List getDevicePersistentTensorAllocIdsList();
/**
* repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true];
*/
@java.lang.Deprecated int getDevicePersistentTensorAllocIdsCount();
/**
* repeated int64 device_persistent_tensor_alloc_ids = 6 [deprecated = true];
*/
@java.lang.Deprecated long getDevicePersistentTensorAllocIds(int index);
}