SWDEV-469422 - Avoid using of hipStream_t in internal methods (#69)

Change-Id: Ifd5362f371c846a88241927383cb95cf046548ef
This commit is contained in:
Godavarthy Surya, Anusha
2025-04-28 15:09:11 +05:30
committed by GitHub
parent bbcb1f9c70
commit fb92683d86
10 changed files with 35 additions and 46 deletions
+1 -1
View File
@@ -465,7 +465,7 @@ hipError_t ihipModuleLaunchKernel(hipFunction_t f, uint32_t globalWorkSizeX,
if (startEvent != nullptr) {
hip::Event* eStart = reinterpret_cast<hip::Event*>(startEvent);
status = eStart->addMarker(hStream, nullptr);
status = eStart->addMarker(hip_stream, nullptr);
if (status != hipSuccess) {
return status;
}