diff --git a/src/dev/hsa/hw_scheduler.cc b/src/dev/hsa/hw_scheduler.cc index 8523be9cce..f25839d313 100644 --- a/src/dev/hsa/hw_scheduler.cc +++ b/src/dev/hsa/hw_scheduler.cc @@ -95,7 +95,7 @@ HWScheduler::registerNewQueue(uint64_t hostReadIndexPointer, // #define VOID_PTR_ADD32(ptr,n) // (void*)((uint32_t*)(ptr) + n)/*ptr + offset*/ // (Addr)VOID_PTR_ADD32(0, queue_id) - Addr db_offset = queue_id; + Addr db_offset = sizeof(uint32_t)*queue_id; if (dbMap.find(db_offset) != dbMap.end()) { panic("Creating an already existing queue (queueID %d)", queue_id); } @@ -346,7 +346,7 @@ HWScheduler::unregisterQueue(uint64_t queue_id) // #define VOID_PTR_ADD32(ptr,n) // (void*)((uint32_t*)(ptr) + n)/*ptr + offset*/ // (Addr)VOID_PTR_ADD32(0, queue_id) - Addr db_offset = queue_id; + Addr db_offset = sizeof(uint32_t)*queue_id; auto dbmap_iter = dbMap.find(db_offset); if (dbmap_iter == dbMap.end()) { panic("Destroying a non-existing queue (db_offset %x)",