Fix output of hipPointerGetAttributes

The output of hipPointerGetAttributes is fixed to match CUDA counterpart.
This commit is contained in:
Aditya Avinash Atluri
2016-03-03 13:58:18 -06:00
parent d4765d39a2
commit b6e34a44b0
+2 -2
View File
@@ -1826,10 +1826,10 @@ hipError_t hipPointerGetAttributes(hipPointerAttribute_t *attributes, void* ptr)
attributes->isManaged = 0;
attributes->allocationFlags = 0;
e = hipErrorInvalidValue;
e = hipErrorUnknown;
}
#else
e = hipErrorInvalidValue;
e = hipErrorInvalidDevice;
#endif
return ihipLogStatus(e);