| 445 | } |
| 446 | |
| 447 | void cgpu_free_device(CGPUDeviceId device) |
| 448 | { |
| 449 | cgpu_assert(device != CGPU_NULLPTR && "fatal: call on NULL device!"); |
| 450 | cgpu_assert(device->proc_table_cache->free_device && "free_device Proc Missing!"); |
| 451 | |
| 452 | device->proc_table_cache->free_device(device); |
| 453 | return; |
| 454 | } |
| 455 | |
| 456 | CGPUQueueId cgpu_get_queue(CGPUDeviceId device, ECGPUQueueType type, uint32_t index) |
| 457 | { |
no outgoing calls