refactor: modernizing NEO::Range->std::span

Signed-off-by: Chodor, Jaroslaw <jaroslaw.chodor@intel.com>
This commit is contained in:
Chodor, Jaroslaw
2025-07-16 17:35:14 +00:00
committed by Compute-Runtime-Automation
parent e92ac1c8ab
commit fcc2038def
28 changed files with 71 additions and 200 deletions

View File

@@ -248,7 +248,7 @@ ze_result_t ExecutableGraph::execute(L0::CommandList *executionTarget, void *pNe
return ZE_RESULT_SUCCESS;
}
void recordHandleWaitEventsFromNextCommand(L0::CommandList &srcCmdList, Graph *&captureTarget, NEO::Range<ze_event_handle_t> events) {
void recordHandleWaitEventsFromNextCommand(L0::CommandList &srcCmdList, Graph *&captureTarget, std::span<ze_event_handle_t> events) {
if (captureTarget) {
// already recording, look for joins
for (auto evh : events) {