Skip to content

Commit

Permalink
Merge pull request #2380 from igchor/queue_dtor
Browse files Browse the repository at this point in the history
[L0 v2] Add missing queueFinish() to queueRelease()
  • Loading branch information
pbalcer authored Nov 26, 2024
2 parents 38ee6ce + a33cb9f commit ab3cc0b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/adapters/level_zero/v2/queue_immediate_in_order.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ ur_result_t ur_queue_immediate_in_order_t::queueRelease() {
if (!RefCount.decrementAndTest())
return UR_RESULT_SUCCESS;

UR_CALL(queueFinish());

delete this;
return UR_RESULT_SUCCESS;
}
Expand Down

0 comments on commit ab3cc0b

Please sign in to comment.