Initial implementation of Timestamp Packet write

Change-Id: Ic498bcf9795f54fbb5fb5a8d07ed17fa70dc4f1a
Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
Dunajski, Bartosz
2018-08-24 08:48:59 +02:00
committed by sys_ocldev
parent 02b8055897
commit a807b9a90b
32 changed files with 429 additions and 95 deletions

View File

@ -64,6 +64,7 @@ HWTEST_P(ParentKernelDispatchTest, givenParentKernelWhenQueueIsNotBlockedThenDev
&blockedCommandsData,
nullptr,
nullptr,
nullptr,
pDevice->getPreemptionMode(),
false);
@ -119,6 +120,7 @@ HWTEST_P(ParentKernelDispatchTest, givenParentKernelWhenQueueIsNotBlockedThenDef
&blockedCommandsData,
nullptr,
nullptr,
nullptr,
pDevice->getPreemptionMode(),
false);
@ -144,6 +146,7 @@ HWTEST_P(ParentKernelDispatchTest, givenParentKernelWhenQueueIsNotBlockedThenSSH
&blockedCommandsData,
nullptr,
nullptr,
nullptr,
pDevice->getPreemptionMode(),
false);
@ -179,6 +182,7 @@ HWTEST_P(ParentKernelDispatchTest, givenParentKernelWhenQueueIsBlockedThenSSHSiz
&blockedCommandsData,
nullptr,
nullptr,
nullptr,
pDevice->getPreemptionMode(),
true);
ASSERT_NE(nullptr, blockedCommandsData);
@ -276,6 +280,7 @@ HWTEST_F(MockParentKernelDispatch, GivenBlockedQueueWhenParentKernelIsDispatched
&blockedCommandsData,
nullptr,
nullptr,
nullptr,
pDevice->getPreemptionMode(),
true);
@ -309,6 +314,7 @@ HWCMDTEST_F(IGFX_GEN8_CORE, MockParentKernelDispatch, GivenParentKernelWhenDispa
&blockedCommandsData,
nullptr,
nullptr,
nullptr,
pDevice->getPreemptionMode(),
false);
@ -365,6 +371,7 @@ HWTEST_F(MockParentKernelDispatch, GivenUsedSSHHeapWhenParentKernelIsDispatchedT
&blockedCommandsData,
nullptr,
nullptr,
nullptr,
pDevice->getPreemptionMode(),
false);
@ -400,6 +407,7 @@ HWTEST_F(MockParentKernelDispatch, GivenNotUsedSSHHeapWhenParentKernelIsDispatch
&blockedCommandsData,
nullptr,
nullptr,
nullptr,
pDevice->getPreemptionMode(),
false);

View File

@ -449,6 +449,7 @@ HWCMDTEST_F(IGFX_GEN8_CORE, ParentKernelCommandQueueFixture, givenBlockedCommand
&blockedCommandsData,
nullptr,
nullptr,
nullptr,
device->getPreemptionMode(),
true);