test(ocl): add getProgrammedGrfValue function

Related-To: NEO-7357

Signed-off-by: Rafal Maziejuk <rafal.maziejuk@intel.com>
This commit is contained in:
Rafal Maziejuk
2023-04-20 13:28:57 +00:00
committed by Compute-Runtime-Automation
parent 86337dc2ee
commit cdd91d64c6
2 changed files with 7 additions and 0 deletions

View File

@@ -78,6 +78,8 @@ struct UnitTestHelper {
static std::vector<bool> getProgrammedLargeGrfValues(CommandStreamReceiver &csr, LinearStream &linearStream);
static uint32_t getProgrammedGrfValue(CommandStreamReceiver &csr, LinearStream &linearStream);
static bool getWorkloadPartitionForStoreRegisterMemCmd(typename GfxFamily::MI_STORE_REGISTER_MEM &storeRegisterMem);
static bool timestampRegisterHighAddress();

View File

@@ -103,4 +103,9 @@ bool UnitTestHelper<GfxFamily>::findStateCacheFlushPipeControl(LinearStream &csr
return stateCacheFlushFound;
}
template <typename GfxFamily>
uint32_t UnitTestHelper<GfxFamily>::getProgrammedGrfValue(CommandStreamReceiver &csr, LinearStream &linearStream) {
return 0u;
}
} // namespace NEO