Interface IAllocatorStatistics
Inherited Members
Namespace: Unity.Barracuda
Syntax
public interface IAllocatorStatistics : IUniqueResource
Properties
busyBytes
Busy bytes (used bytes + bytes lost to fragmentation)
Declaration
long busyBytes { get; }
Property Value
Type | Description |
---|---|
Int64 |
freeBytes
Free bytes
Declaration
long freeBytes { get; }
Property Value
Type | Description |
---|---|
Int64 |
name
Return this allocator name.
Declaration
string name { get; }
Property Value
Type | Description |
---|---|
String |
totalBytes
Total bytes (busy + free)
Declaration
long totalBytes { get; }
Property Value
Type | Description |
---|---|
Int64 |
usedBytes
Bytes used by busy tensors.
Declaration
long usedBytes { get; }
Property Value
Type | Description |
---|---|
Int64 |
Methods
GetTensorDatasStatistics()
Enumerator for tensors data statistics.
Declaration
IEnumerable<ITensorDataStatistics> GetTensorDatasStatistics()
Returns
Type | Description |
---|---|
IEnumerable<ITensorDataStatistics> |
GetTensorsStatistics()
Enumerator for tensors statistics.
Declaration
IEnumerable<ITensorStatistics> GetTensorsStatistics()
Returns
Type | Description |
---|---|
IEnumerable<ITensorStatistics> |