SWDEV-311270 - Fix HIP tests for mempool IPC

Change-Id: Ib5065a259e66fd53c3ffd6bc038dd65be00a3a3d


[ROCm/hip-tests commit: 228748a9d8]
This commit is contained in:
German Andryeyev
2024-02-16 16:37:42 -05:00
parent c165105c24
commit 7e1d48625c
2 changed files with 8 additions and 3 deletions
@@ -40,7 +40,7 @@ class MemPoolImportPointerBenchmark : public Benchmark<MemPoolImportPointerBench
HIP_CHECK(hipMemPoolExportPointer(&exp_data, device_ptr));
TIMED_SECTION(kTimerTypeCpu) {
HIP_CHECK(hipMemPoolImportPointer(reinterpret_cast<void**>(device_ptr_import), mem_pool, &exp_data));
HIP_CHECK(hipMemPoolImportPointer(reinterpret_cast<void**>(&device_ptr_import), mem_pool, &exp_data));
}
HIP_CHECK(hipFree(device_ptr));