2
0

SWDEV-416443 - hipPointerGetAttributes should return correct type for managed memory

Change-Id: Ic197cd8c9d3f5405616ed6e4924ed5577e636b94


[ROCm/clr commit: 84eae1f0a9]
Este cometimento está contido em:
Satyanvesh Dittakavi
2023-08-11 10:50:21 +00:00
ascendente 0cf78a6dfa
cometimento bee336d360
+3
Ver ficheiro
@@ -3379,6 +3379,9 @@ hipError_t hipPointerGetAttributes(hipPointerAttribute_t* attributes, const void
((memObj->getMemFlags() & kManagedAlloc) == kManagedAlloc) ? true : false;
attributes->allocationFlags = memObj->getUserData().flags;
attributes->device = memObj->getUserData().deviceId;
if (attributes->isManaged) {
attributes->type = hipMemoryTypeManaged;
}
HIP_RETURN(hipSuccess);
}