[llvm] [OFFLOAD][L0] Use counter-based events for inorder queues (PR #202301)
Nick Sarnie via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 11 08:27:10 PDT 2026
================
@@ -33,9 +33,10 @@ class L0EventTy {
ze_event_handle_t getZeEvent() const { return ZeEvent; }
L0QueueTy *getQueue() const { return Queue; }
- Error reset() {
+ Error reset(bool SkipEventReset) {
----------------
sarnex wrote:
I was going to suggest we instead use a class member variable instead of a function arg, but since these events can be reused, both cases (normal and counter-based) can happen at different points during the lifetime of the same `L0Event` object right?
https://github.com/llvm/llvm-project/pull/202301
More information about the llvm-commits
mailing list