Skip to content

[UR][L0] Lock context mutex during UsmPoolHandles cleanup #18461

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion unified-runtime/source/adapters/level_zero/queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -630,11 +630,12 @@ ur_result_t urQueueRelease(
UR_CALL(Queue->synchronize());

// Cleanup the allocations from 'AsyncPool' made by this queue.

Queue->Context->AsyncPool.cleanupPoolsForQueue(Queue);
std::shared_lock<ur_shared_mutex> ContextLock(Queue->Context->Mutex);
for (auto &Pool : Queue->Context->UsmPoolHandles) {
Pool->cleanupPoolsForQueue(Queue);
}
ContextLock.unlock();

// Destroy all the fences created associated with this queue.
for (auto it = Queue->CommandListMap.begin();
Expand Down Expand Up @@ -913,9 +914,11 @@ ur_result_t urQueueFinish(
}

Queue->Context->AsyncPool.cleanupPoolsForQueue(Queue);
std::shared_lock<ur_shared_mutex> ContextLock(Queue->Context->Mutex);
for (auto &Pool : Queue->Context->UsmPoolHandles) {
Pool->cleanupPoolsForQueue(Queue);
}
ContextLock.unlock();

return UR_RESULT_SUCCESS;
}
Expand Down
Loading