rocr: use driver interface for scratch memory deallocation

Replace direct hsaKmtFreeMemory call with driver's FreeMemory interface
in GpuAgent::ReleaseResources(). This change improves code abstraction
by handling memory deallocation through the unified driver interface.

Signed-off-by: Honglei Huang <Honglei1.Huang@amd.com>


[ROCm/ROCR-Runtime commit: 8216787d4c]
Этот коммит содержится в:
Honglei Huang
2025-06-24 13:54:38 +08:00
коммит произвёл Huang, Honglei1
родитель 1ad79f04d0
Коммит e81be86a31
+1 -1
Просмотреть файл
@@ -929,7 +929,7 @@ void GpuAgent::ReleaseResources() {
scratch_cache_.free_reserve();
if (scratch_pool_.base() != NULL) {
HSAKMT_CALL(hsaKmtFreeMemory(scratch_pool_.base(), scratch_pool_.size()));
driver().FreeMemory(scratch_pool_.base(), scratch_pool_.size());
}
for (int i = 0; i < QueueCount; i++)