| 543 | } |
| 544 | |
| 545 | void *Device::host_alloc(const MemoryType /*type*/, const size_t size) |
| 546 | { |
| 547 | return util_aligned_malloc(size, MIN_ALIGNMENT_DEVICE_MEMORY); |
| 548 | } |
| 549 | |
| 550 | void Device::host_free(const MemoryType /*type*/, void *host_pointer, const size_t size) |
| 551 | { |
no test coverage detected