Add missing cudaMemsetAsync transformation

[ROCm/clr commit: 596e8e4e4e]
This commit is contained in:
pensun
2016-04-14 09:02:02 -05:00
parent 03eff9ee90
commit 84dbc09fe6
@@ -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;