SWDEV-481861 - Add hipEventDestory for every hipEventCreate in all samples.

Change-Id: Ib1b860b02ef2640f321d54902b34ecf0e495ed65


[ROCm/hip-tests commit: dac779c834]
This commit is contained in:
Jaydeep Patel
2024-08-29 06:34:06 +00:00
committed by Jaydeepkumar Patel
parent 1cd42f33f1
commit f06e679b18
3 changed files with 9 additions and 0 deletions
@@ -80,6 +80,9 @@ void launchKernel(float* C, float* A, float* B, bool manual){
checkHipErrors(hipEventElapsedTime(&eventMs, start, stop));
printf("kernel Execution time = %6.3fms\n", eventMs);
checkHipErrors(hipEventDestroy(start));
checkHipErrors(hipEventDestroy(stop));
//Calculate Occupancy
int numBlock = 0;
checkHipErrors(hipOccupancyMaxActiveBlocksPerMultiprocessor(&numBlock, multiply, blockSize, 0));