Enable ULT

Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
Filip Hazubski
2020-12-07 16:28:03 +00:00
committed by Compute-Runtime-Automation
parent 9a9bd6a805
commit 0609a0915e

View File

@@ -61,6 +61,7 @@ struct TwoOOQsTwoDependentWalkers : public HelloWorldTest<OOQFixtureFactory>,
&event1);
ASSERT_EQ(CL_SUCCESS, retVal);
HardwareParse::parseCommands<FamilyType>(*pCmdQ);
// Create a second command queue (beyond the default one)
pCmdQ2 = createCommandQueue(pClDevice, CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE);
@@ -77,13 +78,11 @@ struct TwoOOQsTwoDependentWalkers : public HelloWorldTest<OOQFixtureFactory>,
&event2);
ASSERT_EQ(CL_SUCCESS, retVal);
HardwareParse::parseCommands<FamilyType>(*pCmdQ2);
pCmdQ->flush();
pCmdQ2->flush();
HardwareParse::parseCommands<FamilyType>(*pCmdQ);
HardwareParse::parseCommands<FamilyType>(*pCmdQ2);
Event *E1 = castToObject<Event>(event1);
ASSERT_NE(nullptr, E1);
Event *E2 = castToObject<Event>(event2);
@@ -166,7 +165,7 @@ HWCMDTEST_F(IGFX_GEN8_CORE, TwoOOQsTwoDependentWalkers, GivenTwoCommandQueuesWhe
}
}
HWTEST_F(TwoOOQsTwoDependentWalkers, DISABLED_GivenTwoCommandQueuesWhenEnqueuingKernelThenOnePipeControlIsInsertedBetweenWalkers) {
HWTEST_F(TwoOOQsTwoDependentWalkers, GivenTwoCommandQueuesWhenEnqueuingKernelThenOnePipeControlIsInsertedBetweenWalkers) {
typedef typename FamilyType::PIPE_CONTROL PIPE_CONTROL;
pDevice->getUltCommandStreamReceiver<FamilyType>().timestampPacketWriteEnabled = false;