Merge pull request #459 from mangupta/add_malloc3d_nvcc

Add hipMalloc3D to nvcc detail
Этот коммит содержится в:
Maneesh Gupta
2018-05-21 12:04:52 +05:30
коммит произвёл GitHub
родитель 817a6857f2 5133299804
Коммит 845cfb4fe5
+4
Просмотреть файл
@@ -382,6 +382,10 @@ inline static hipError_t hipMallocPitch(void** ptr, size_t* pitch, size_t width,
return hipCUDAErrorTohipError(cudaMallocPitch(ptr, pitch, width, height));
}
inline static hipError_t hipMalloc3D(hipPitchedPtr* pitchedDevPtr, hipExtent extent) {
return hipCUDAErrorTohipError(cudaMalloc3D(pitchedDevPtr, extent));
}
inline static hipError_t hipFree(void* ptr) { return hipCUDAErrorTohipError(cudaFree(ptr)); }
inline static hipError_t hipMallocHost(void** ptr, size_t size)