refactor: Add AIL infrastructure to disable 256B Prefetch

Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
Lukasz Jobczyk
2024-09-30 09:34:50 +00:00
committed by Compute-Runtime-Automation
parent da8ce85f0a
commit f87c3b57bb
7 changed files with 34 additions and 0 deletions

View File

@@ -23,6 +23,11 @@ class MockAILConfiguration : public AILConfiguration {
return contextSyncFlagReturn;
}
bool prefetchDisableRequiredReturn = false;
bool is256BPrefetchDisableRequired() override {
return prefetchDisableRequiredReturn;
}
bool isBufferPoolEnabledReturn = true;
bool isBufferPoolEnabled() override {
return isBufferPoolEnabledReturn;