Always add dcFlush before aux translation kernels

Change-Id: I4a9b0ec21365cc19532be74c9dc44d68c8fa0bfe
Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
Dunajski, Bartosz
2019-08-13 09:05:47 +02:00
parent 5952d8f5da
commit e3deda9b67
2 changed files with 2 additions and 3 deletions

View File

@@ -1346,7 +1346,7 @@ HWTEST_F(DispatchWalkerTest, givenKernelWhenNonAuxToAuxWhenTranslationRequiredTh
bool dcFlushRequired = (executionEnvironment->getHardwareInfo()->platform.eRenderCoreFamily == IGFX_GEN8_CORE);
auto beginPipeControl = genCmdCast<typename FamilyType::PIPE_CONTROL *>(*(pipeControls[0]));
EXPECT_EQ(dcFlushRequired, beginPipeControl->getDcFlushEnable());
EXPECT_TRUE(beginPipeControl->getDcFlushEnable());
EXPECT_TRUE(beginPipeControl->getCommandStreamerStallEnable());
auto endPipeControl = genCmdCast<typename FamilyType::PIPE_CONTROL *>(*(pipeControls[1]));