AllocationType Enumeration |
https://www.emgu.com
Memory allocation strategies.
Namespace:
Emgu.TF.Lite
Assembly:
Emgu.TF.Lite (in Emgu.TF.Lite.dll) Version: 2.16.1.1623+4bf999fc3b81f861a8c2aa1b11ce6bfb8f610804
Syntaxpublic enum AllocationType
Public Enumeration AllocationType
public enum class AllocationType
Members
| Member name | Value | Description |
---|
| MemNone | 0 |
None
|
| MmapRo | 1 |
Read-only memory-mapped data (or data externally allocated).
|
| ArenaRw | 2 |
Arena allocated data
|
| ArenaRwPersistent | 3 |
Arena allocated persistent data
|
| Dynamic | 4 |
Tensors that are allocated during evaluation
|
See Also