mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
- 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>
20 lines
232 B
C++
20 lines
232 B
C++
/*
|
|
* 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
|