Removed deprecated hipMallocHost

Change-Id: I3141fe05a34b6a306297a30721509965f49ccb97
This commit is contained in:
Rahul Garg
2016-09-26 05:52:21 +05:30
förälder 7b87a972cb
incheckning 6790ff6b11
3 ändrade filer med 5 tillägg och 31 borttagningar
-7
Visa fil
@@ -179,13 +179,6 @@ hipError_t hipHostAlloc(void** ptr, size_t sizeBytes, unsigned int flags)
return hipHostMalloc(ptr, sizeBytes, flags);
};
//---
// TODO - remove me, this is deprecated.
hipError_t hipMallocHost(void** ptr, size_t sizeBytes)
{
return hipHostMalloc(ptr, sizeBytes, 0);
}
// width in bytes
hipError_t hipMallocPitch(void** ptr, size_t* pitch, size_t width, size_t height)
{