performance: update task count after staging copy

Related-To: NEO-14026

This is required for proper reuse of staging buffers
within same API call.

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2025-08-26 16:57:06 +00:00
committed by Compute-Runtime-Automation
parent 12fa26f202
commit b80c9c70b7
2 changed files with 13 additions and 2 deletions

View File

@@ -1890,7 +1890,7 @@ ze_result_t CommandListCoreFamilyImmediate<gfxCoreFamily>::appendStagingMemoryCo
}
}
ret = flushImmediate(ret, true, hasStallingCmds, relaxedOrdering,
NEO::AppendOperations::kernel, true, hSignalEvent, false, nullptr, nullptr);
NEO::AppendOperations::kernel, true, hSignalEvent, true, nullptr, nullptr);
return ret;
};