Address code review comments to use hipDeviceptr_t

This commit is contained in:
Wen-Heng (Jack) Chung
2019-03-05 05:51:05 +00:00
parent 0337b686ef
commit 5cbd28f29b
3 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -1719,7 +1719,7 @@ hipError_t hipMemsetAsync(void* dst, int value, size_t sizeBytes, hipStream_t st
return ihipLogStatus(e);
};
hipError_t hipMemsetD32Async(void* dst, int value, size_t count, hipStream_t stream) {
hipError_t hipMemsetD32Async(hipDeviceptr_t dst, int value, size_t count, hipStream_t stream) {
HIP_INIT_SPECIAL_API(hipMemsetD32Async, (TRACE_MCMD), dst, value, count, stream);
hipError_t e = hipSuccess;