mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Remove HW types from synchronization interface
Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
975e2af781
commit
a3903c385e
@ -244,7 +244,7 @@ GEN12LPTEST_F(Gen12LpCoherencyRequirements, givenCoherencyRequirementWithoutShar
|
||||
auto hwInfo = device->getHardwareInfo();
|
||||
|
||||
flushTask(false);
|
||||
if (MemorySynchronizationCommands<FamilyType>::isPipeControlPriorToPipelineSelectWArequired(hwInfo)) {
|
||||
if (MemorySynchronizationCommands<FamilyType>::isBarrierlPriorToPipelineSelectWaRequired(hwInfo)) {
|
||||
findCmd(true, false, true); // first time
|
||||
} else {
|
||||
findCmd(true, false, false); // first time
|
||||
|
@ -84,7 +84,7 @@ GEN12LPTEST_F(UltCommandStreamReceiverTestGen12Lp, givenDebugEnablingCacheFlushW
|
||||
LinearStream stream(buff, sizeof(PIPE_CONTROL) * 3);
|
||||
|
||||
PipeControlArgs args;
|
||||
MemorySynchronizationCommands<FamilyType>::addPipeControl(stream, args);
|
||||
MemorySynchronizationCommands<FamilyType>::addSingleBarrier(stream, args);
|
||||
|
||||
parseCommands<FamilyType>(stream, 0);
|
||||
|
||||
@ -111,7 +111,7 @@ GEN12LPTEST_F(UltCommandStreamReceiverTestGen12Lp, givenDebugDisablingCacheFlush
|
||||
PipeControlArgs args;
|
||||
args.dcFlushEnable = true;
|
||||
args.hdcPipelineFlush = true;
|
||||
MemorySynchronizationCommands<FamilyType>::addPipeControl(stream, args);
|
||||
MemorySynchronizationCommands<FamilyType>::addSingleBarrier(stream, args);
|
||||
|
||||
parseCommands<FamilyType>(stream, 0);
|
||||
|
||||
|
Reference in New Issue
Block a user