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
committad av GitHub
förälder bbcb1f9c70
incheckning fb92683d86
10 ändrade filer med 35 tillägg och 46 borttagningar
+2 -1
Visa fil
@@ -1597,7 +1597,8 @@ hipError_t ihipGraphLaunch(hip::GraphExec* graphExec, hipStream_t stream) {
if (!hip::isValid(stream)) {
return hipErrorContextIsDestroyed;
}
return graphExec->Run(stream);
hip::Stream* launch_stream = hip::getStream(stream);
return graphExec->Run(launch_stream);
}
hipError_t hipGraphLaunch_common(hip::GraphExec* graphExec, hipStream_t stream) {