Skip to content

Commit 55f4d69

Browse files
committed
temp
1 parent 6844164 commit 55f4d69

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

unified-runtime/source/adapters/level_zero/v2/queue_immediate_in_order.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ ur_result_t ur_queue_immediate_in_order_t::queueFinish() {
104104
ZE2UR_CALL(zeCommandListHostSynchronize,
105105
(lockedCommandListManager->getZeCommandList(), UINT64_MAX));
106106

107-
hContext->getAsyncPool()->cleanupPoolsForQueue(this);
108-
hContext->forEachUsmPool([this](ur_usm_pool_handle_t hPool) {
109-
hPool->cleanupPoolsForQueue(this);
110-
return true;
111-
});
107+
// hContext->getAsyncPool()->cleanupPoolsForQueue(this);
108+
// hContext->forEachUsmPool([this](ur_usm_pool_handle_t hPool) {
109+
// hPool->cleanupPoolsForQueue(this);
110+
// return true;
111+
// });
112112

113113
UR_CALL(lockedCommandListManager->releaseSubmittedKernels());
114114

unified-runtime/source/adapters/level_zero/v2/queue_immediate_out_of_order.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ ur_result_t ur_queue_immediate_out_of_order_t::queueFinish() {
112112
UR_CALL(commandListManagersLocked[i].releaseSubmittedKernels());
113113
}
114114

115-
hContext->getAsyncPool()->cleanupPoolsForQueue(this);
116-
hContext->forEachUsmPool([this](ur_usm_pool_handle_t hPool) {
117-
hPool->cleanupPoolsForQueue(this);
118-
return true;
119-
});
115+
// hContext->getAsyncPool()->cleanupPoolsForQueue(this);
116+
// hContext->forEachUsmPool([this](ur_usm_pool_handle_t hPool) {
117+
// hPool->cleanupPoolsForQueue(this);
118+
// return true;
119+
// });
120120

121121
return UR_RESULT_SUCCESS;
122122
}

0 commit comments

Comments
 (0)