llvm-project
690c3ee5 - [Offload] Replace "EventOut" parameters with `olCreateEvent` (#150217)

Commit
148 days ago
[Offload] Replace "EventOut" parameters with `olCreateEvent` (#150217) 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); ```
Author
Parents
Loading