SWDEV-350474 - Added hipExtModuleLaunchKernel API support as part of stream capture

Change-Id: I90a880ae0d3a85a0cc8380d2cb21e4759ea8151b
This commit is contained in:
Anusha Godavarthy Surya
2022-08-02 04:37:25 -07:00
committed by Anusha Godavarthy Surya
parent efadc772db
commit 0d6e8e378e
3 changed files with 74 additions and 7 deletions
+4
View File
@@ -420,6 +420,10 @@ hipError_t hipExtModuleLaunchKernel(hipFunction_t f, uint32_t globalWorkSizeX,
localWorkSizeX, localWorkSizeY, localWorkSizeZ, sharedMemBytes, hStream,
kernelParams, extra, startEvent, stopEvent, flags);
STREAM_CAPTURE(hipExtModuleLaunchKernel, hStream, f, globalWorkSizeX, globalWorkSizeY,
globalWorkSizeZ, localWorkSizeX, localWorkSizeY, localWorkSizeZ, sharedMemBytes,
kernelParams, extra, startEvent, stopEvent, flags);
HIP_RETURN(ihipModuleLaunchKernel(f, globalWorkSizeX, globalWorkSizeY, globalWorkSizeZ,
localWorkSizeX, localWorkSizeY, localWorkSizeZ, sharedMemBytes,
hStream, kernelParams, extra, startEvent, stopEvent, flags));