Add missing cudaMemsetAsync transformation

Этот коммит содержится в:
pensun
2016-04-14 09:02:02 -05:00
родитель 9f7fb0370c
Коммит 596e8e4e4e
+4
Просмотреть файл
@@ -190,6 +190,10 @@ inline static hipError_t hipMemset(void* devPtr,int value, size_t count) {
return hipCUDAErrorTohipError(cudaMemset(devPtr, value, count));
}
inline static hipError_t hipMemsetAsync(void* devPtr,int value, size_t count) {
return hipCUDAErrorTohipError(cudaMemsetAsync(devPtr, value, count));
}
inline static hipError_t hipGetDeviceProperties(hipDeviceProp_t *p_prop, int device)
{
cudaDeviceProp cdprop;