test: additional chaining semaphore required when dcFlushRequired
Related-to: NEO-12737 Signed-off-by: Damian Tomczak <damian.tomczak@intel.com>
This commit is contained in:
parent
bc2b49b958
commit
0acd40272b
|
@ -1948,11 +1948,11 @@ HWTEST2_F(InOrderCmdListTests, givenCmdsChainingFromAppendCopyAndFlushRequiredWh
|
|||
|
||||
offset = cmdStream->getUsed();
|
||||
immCmdList->appendMemoryCopyRegion(©Data, ®ion, 1, 1, ©Data, ®ion, 1, 1, eventHandle, 0, nullptr, copyParams);
|
||||
findSemaphores(heaplessEnabled ? 1 : 2); // implicit dependency + chaining
|
||||
findSemaphores((heaplessEnabled && !immCmdList->dcFlushSupport) ? 1 : 2); // implicit dependency + chaining
|
||||
|
||||
offset = cmdStream->getUsed();
|
||||
immCmdList->appendMemoryCopyRegion(©Data, ®ion, 1, 1, ©Data, ®ion, 1, 1, nullptr, 0, nullptr, copyParams);
|
||||
findSemaphores(heaplessEnabled ? 1 : 0); // no implicit dependency
|
||||
findSemaphores((heaplessEnabled && !immCmdList->dcFlushSupport) ? 1 : 0); // no implicit dependency
|
||||
}
|
||||
|
||||
HWTEST2_F(InOrderCmdListTests, givenEventWithRequiredPipeControlWhenDispatchingCopyThenSignalInOrderAllocation, IsAtLeastXeHpCore) {
|
||||
|
|
Loading…
Reference in New Issue