Removed deprecated hipMallocHost

Change-Id: I3141fe05a34b6a306297a30721509965f49ccb97
Этот коммит содержится в:
Rahul Garg
2016-09-26 05:52:21 +05:30
родитель 3a6acd044b
Коммит f5b463702e
3 изменённых файлов: 5 добавлений и 31 удалений
-7
Просмотреть файл
@@ -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)
{