Added hipMallocPitch on HIP/NVCC path

Change-Id: Ie3ba7d3f95acac23805efa919531043b350a3f21


[ROCm/hip commit: 1223612331]
Этот коммит содержится в:
Rahul Garg
2017-05-16 07:15:13 +05:30
родитель 6b76c979ce
Коммит c6a2d65d5e
+4
Просмотреть файл
@@ -204,6 +204,10 @@ inline static hipError_t hipMalloc(void** ptr, size_t size) {
return hipCUDAErrorTohipError(cudaMalloc(ptr, size));
}
inline static hipError_t hipMallocPitch(void** ptr, size_t* pitch, size_t width, size_t height) {
return hipCUDAErrorTohipError(cudaMallocPitch(ptr, pitch, width, height));
}
inline static hipError_t hipFree(void* ptr) {
return hipCUDAErrorTohipError(cudaFree(ptr));
}