Update UnitTestHelper

Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
Filip Hazubski
2021-10-26 07:42:53 +00:00
committed by Compute-Runtime-Automation
parent 7bfeeaab86
commit c15a7f8355
3 changed files with 3 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ struct UnitTestHelper {
static uint64_t getAtomicMemoryAddress(const typename GfxFamily::MI_ATOMIC &atomic);
static bool requiresTimestampPacketsInSystemMemory();
static bool requiresTimestampPacketsInSystemMemory(HardwareInfo &hwInfo);
static void setExtraMidThreadPreemptionFlag(HardwareInfo &hwInfo, bool value);

View File

@@ -76,7 +76,7 @@ inline uint64_t UnitTestHelper<GfxFamily>::getAtomicMemoryAddress(const typename
}
template <typename GfxFamily>
inline bool UnitTestHelper<GfxFamily>::requiresTimestampPacketsInSystemMemory() {
inline bool UnitTestHelper<GfxFamily>::requiresTimestampPacketsInSystemMemory(HardwareInfo &hwInfo) {
return true;
}