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 c5606c13e7
commit 7b868eb274
+2 -2
Vedi 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);