Add additional kernel flag + capability to pull extra patch tokens

Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
Dunajski, Bartosz
2022-12-12 13:35:16 +00:00
committed by Compute-Runtime-Automation
parent 470c6d4660
commit bcecd069b4
12 changed files with 42 additions and 10 deletions

View File

@@ -33,6 +33,7 @@ class Gmm;
struct HardwareInfo;
struct KernelInfo;
struct StateComputeModeProperties;
struct KernelDescriptor;
struct EncodeDispatchKernelArgs {
uint64_t eventAddress = 0ull;
@@ -69,8 +70,11 @@ enum class CompareOperation : uint32_t {
};
struct EncodeWalkerArgs {
EncodeWalkerArgs() = delete;
KernelExecutionType kernelExecutionType = KernelExecutionType::Default;
bool requiredSystemFence = false;
const KernelDescriptor &kernelDescriptor;
};
template <typename GfxFamily>