Noel Chalmers
Noel Chalmers
## Description Adds new `occa::memoryPool` object to the OCCA API, which allows users to access a pool of device memory. The `occa::memoryPool` object is created from an initialized `occa::device` as...
## Description
Following the recent change to `occa::memory::size()` the following program: ```cpp #include int main(const int argc, const char **argv) { occa::device device({{"mode", "Serial"}}); size_t Nentries = 10; occa::memory a = device.malloc(Nentries);...