Power-of-2 buffer pool for output and activation buffers.
| 73 | |
| 74 | /// Power-of-2 buffer pool for output and activation buffers. |
| 75 | struct BufferPool { |
| 76 | free: HashMap<u64, Vec<MappedBuffer>>, |
| 77 | } |
| 78 | |
| 79 | impl BufferPool { |
| 80 | fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected