mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 05:35:19 +08:00
Remove non-used parameters from appendLaunchKernelWithParams
Change-Id: I13d033ffec74a639d308493cb3b399029de2c036 Signed-off: Jaime Arteaga <jaime.a.arteaga.molina@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
990f81efea
commit
a90553b9e4
@@ -151,7 +151,7 @@ HWTEST2_F(CommandListAppendLaunchKernel, WhenAppendingFunctionThenUsedCmdBufferS
|
||||
|
||||
auto sizeBefore = commandList->commandContainer.getCommandStream()->getUsed();
|
||||
|
||||
auto result = commandList->appendLaunchKernelWithParams(kernel->toHandle(), &groupCount, nullptr, 0, nullptr, false, false);
|
||||
auto result = commandList->appendLaunchKernelWithParams(kernel->toHandle(), &groupCount, nullptr, false, false);
|
||||
ASSERT_EQ(ZE_RESULT_SUCCESS, result);
|
||||
|
||||
auto sizeAfter = commandList->commandContainer.getCommandStream()->getUsed();
|
||||
@@ -161,7 +161,7 @@ HWTEST2_F(CommandListAppendLaunchKernel, WhenAppendingFunctionThenUsedCmdBufferS
|
||||
|
||||
sizeBefore = commandList->commandContainer.getCommandStream()->getUsed();
|
||||
|
||||
result = commandList->appendLaunchKernelWithParams(kernel->toHandle(), &groupCount, nullptr, 0, nullptr, true, false);
|
||||
result = commandList->appendLaunchKernelWithParams(kernel->toHandle(), &groupCount, nullptr, true, false);
|
||||
ASSERT_EQ(ZE_RESULT_SUCCESS, result);
|
||||
|
||||
sizeAfter = commandList->commandContainer.getCommandStream()->getUsed();
|
||||
|
||||
Reference in New Issue
Block a user