feature: disable counter caching for external storage Events

Related-To: NEO-13971

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski
2025-02-19 15:24:13 +00:00
committed by Compute-Runtime-Automation
parent 20191f4ccf
commit a0a735804f
3 changed files with 9 additions and 2 deletions

View File

@@ -297,6 +297,10 @@ HWTEST_F(CommandEncoderTests, givenInOrderExecutionInfoWhenSetLastCounterValueIs
EXPECT_FALSE(inOrderExecInfo->isCounterAlreadyDone(2u));
EXPECT_FALSE(inOrderExecInfo->isCounterAlreadyDone(3u));
EXPECT_FALSE(inOrderExecInfo->isCounterAlreadyDone(0u));
inOrderExecInfo = std::make_unique<InOrderExecInfo>(nullptr, nullptr, mockDevice, 2, true, false);
inOrderExecInfo->setLastWaitedCounterValue(2);
EXPECT_FALSE(inOrderExecInfo->isCounterAlreadyDone(1));
}
HWTEST_F(CommandEncoderTests, givenInOrderExecutionInfoWhenResetCalledThenUploadToTbx) {