Address code review comments to use hipDeviceptr_t

[ROCm/clr commit: 8b7baa0bd9]
Этот коммит содержится в:
Wen-Heng (Jack) Chung
2019-03-05 05:51:05 +00:00
родитель a4b654a5af
Коммит e34b0ccd48
3 изменённых файлов: 6 добавлений и 5 удалений
+2 -1
Просмотреть файл
@@ -1547,7 +1547,8 @@ hipError_t hipMemsetAsync(void* dst, int value, size_t sizeBytes, hipStream_t st
* @param[in] stream - Stream identifier
* @return #hipSuccess, #hipErrorInvalidValue, #hipErrorMemoryFree
*/
hipError_t hipMemsetD32Async(void* dst, int value, size_t count, hipStream_t stream __dparm(0));
hipError_t hipMemsetD32Async(hipDeviceptr_t dst, int value, size_t count,
hipStream_t stream __dparm(0));
/**
* @brief Fills the memory area pointed to by dst with the constant value.
+3 -3
Просмотреть файл
@@ -655,7 +655,7 @@ inline static hipError_t hipMemset(void* devPtr, int value, size_t count) {
return hipCUDAErrorTohipError(cudaMemset(devPtr, value, count));
}
inline static hipError_t hipMemsetD32(void* devPtr, int value, size_t count) {
inline static hipError_t hipMemsetD32(hipDeviceptr_t devPtr, int value, size_t count) {
return hipCUDAErrorTohipError(cuMemsetD32(devPtr, value, count));
}
@@ -664,8 +664,8 @@ inline static hipError_t hipMemsetAsync(void* devPtr, int value, size_t count,
return hipCUDAErrorTohipError(cudaMemsetAsync(devPtr, value, count, stream));
}
inline static hipError_t hipMemsetD32Async(void* devPtr, int value, size_t count,
hipStream_t stream __dparm(0)) {
inline static hipError_t hipMemsetD32Async(hipDeviceptr_t devPtr, int value, size_t count,
hipStream_t stream __dparm(0)) {
return hipCUDAErrorTohipError(cuMemsetD32Async(devPtr, value, count, stream));
}
+1 -1
Просмотреть файл
@@ -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;