| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-07-24 | [Offload] Replace "EventOut" parameters with `olCreateEvent` (#150217) | Ross Brunton | |
| Rather than having every "enqueue"-type function have an output pointer specifically for an output event, just provide an `olCreateEvent` entrypoint which pushes an event to the queue. For example, replace: ```cpp olMemcpy(Queue, ..., EventOut); ``` with ```cpp olMemcpy(Queue, ...); olCreateEvent(Queue, EventOut); ``` | |||
| 2025-07-23 | [Offload] Rename olWaitEvent/Queue to olSyncEvent/Queue (#150023) | Ross Brunton | |
| This more closely matches the nomenclature used by CUDA, AMDGPU and the plugin interface. | |||
