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
@@ -294,7 +294,7 @@ bool MemoryPool::FreeMemory(amd::Memory* memory, Stream* stream, Event* event) {
// Add a marker to the stream to trace availability of this memory
Event* e = new hip::Event(0);
if (e != nullptr) {
if (hipSuccess == e->addMarker(reinterpret_cast<hipStream_t>(stream), nullptr)) {
if (hipSuccess == e->addMarker(stream, nullptr)) {
ts.SetEvent(e);
// Make sure runtime sends a notification
auto result = e->ready();