| 187 | } |
| 188 | |
| 189 | void Allocator::nativeFree(void *ptr) { |
| 190 | auto *buf = static_cast<sycl::buffer<std::byte> *>(ptr); |
| 191 | AF_TRACE("nativeFree: {}", ptr); |
| 192 | delete buf; |
| 193 | } |
| 194 | |
| 195 | AllocatorPinned::AllocatorPinned() { logger = common::loggerFactory("mem"); } |
| 196 |