Add missing cudaMemsetAsync transformation
Этот коммит содержится в:
@@ -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;
|
||||
|
||||
Ссылка в новой задаче
Block a user