refactor: simplify interface of append launch kernel

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2025-05-14 20:42:02 +00:00
committed by Compute-Runtime-Automation
parent ffe3198b72
commit f2601d8ccf
39 changed files with 631 additions and 624 deletions

View File

@@ -160,7 +160,7 @@ ze_result_t zeCommandListAppendLaunchKernel(
L0::CmdListKernelLaunchParams launchParams = {};
launchParams.skipInOrderNonWalkerSignaling = cmdList->skipInOrderNonWalkerSignalingAllowed(hSignalEvent);
return cmdList->appendLaunchKernel(kernelHandle, *launchKernelArgs, hSignalEvent, numWaitEvents, phWaitEvents, launchParams, false);
return cmdList->appendLaunchKernel(kernelHandle, *launchKernelArgs, hSignalEvent, numWaitEvents, phWaitEvents, launchParams);
}
ze_result_t zeCommandListAppendLaunchCooperativeKernel(
@@ -174,7 +174,7 @@ ze_result_t zeCommandListAppendLaunchCooperativeKernel(
L0::CmdListKernelLaunchParams launchParams = {};
launchParams.isCooperative = true;
return L0::CommandList::fromHandle(hCommandList)->appendLaunchKernel(kernelHandle, *launchKernelArgs, hSignalEvent, numWaitEvents, phWaitEvents, launchParams, false);
return L0::CommandList::fromHandle(hCommandList)->appendLaunchKernel(kernelHandle, *launchKernelArgs, hSignalEvent, numWaitEvents, phWaitEvents, launchParams);
}
ze_result_t zeCommandListAppendLaunchKernelIndirect(