feature: add internal interfaces to manage all dispatch models of command lists

- add new enum type for command list flush from immediate
- add new argument for flushing immediate command list - regular command list
- add capability to provide additional stream for epilogue commands
- add pointer to provide external csr mutex to lock both execution and flush

Related-To: NEO-10356

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2025-02-28 10:09:29 +00:00
committed by Compute-Runtime-Automation
parent b3e10a3d16
commit cae3bb1d0a
17 changed files with 171 additions and 104 deletions

View File

@@ -0,0 +1,19 @@
/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
enum AppendOperations {
none = 0,
kernel = 1u,
nonKernel = 2u,
cmdList = 3u
};
} // namespace NEO