mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
refactor: modernizing NEO::Range->std::span
Signed-off-by: Chodor, Jaroslaw <jaroslaw.chodor@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
e92ac1c8ab
commit
fcc2038def
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user