|
@@ -68,7 +68,7 @@ static inline void STARPU_PLU(common_u22)(void *descr[],
|
|
|
|
|
|
status = cublasGetError();
|
|
status = cublasGetError();
|
|
if (STARPU_UNLIKELY(status != CUBLAS_STATUS_SUCCESS))
|
|
if (STARPU_UNLIKELY(status != CUBLAS_STATUS_SUCCESS))
|
|
- STARPU_ABORT();
|
|
|
|
|
|
+ STARPU_CUBLAS_REPORT_ERROR(status);
|
|
|
|
|
|
if (STARPU_UNLIKELY((cures = cudaStreamSynchronize(starpu_cuda_get_local_stream())) != cudaSuccess))
|
|
if (STARPU_UNLIKELY((cures = cudaStreamSynchronize(starpu_cuda_get_local_stream())) != cudaSuccess))
|
|
STARPU_CUDA_REPORT_ERROR(cures);
|
|
STARPU_CUDA_REPORT_ERROR(cures);
|
|
@@ -173,7 +173,7 @@ static inline void STARPU_PLU(common_u12)(void *descr[],
|
|
|
|
|
|
status = cublasGetError();
|
|
status = cublasGetError();
|
|
if (STARPU_UNLIKELY(status != CUBLAS_STATUS_SUCCESS))
|
|
if (STARPU_UNLIKELY(status != CUBLAS_STATUS_SUCCESS))
|
|
- STARPU_ABORT();
|
|
|
|
|
|
+ STARPU_CUBLAS_REPORT_ERROR(status);
|
|
|
|
|
|
if (STARPU_UNLIKELY((cures = cudaStreamSynchronize(starpu_cuda_get_local_stream())) != cudaSuccess))
|
|
if (STARPU_UNLIKELY((cures = cudaStreamSynchronize(starpu_cuda_get_local_stream())) != cudaSuccess))
|
|
STARPU_CUDA_REPORT_ERROR(cures);
|
|
STARPU_CUDA_REPORT_ERROR(cures);
|
|
@@ -280,7 +280,7 @@ static inline void STARPU_PLU(common_u21)(void *descr[],
|
|
|
|
|
|
status = cublasGetError();
|
|
status = cublasGetError();
|
|
if (status != CUBLAS_STATUS_SUCCESS)
|
|
if (status != CUBLAS_STATUS_SUCCESS)
|
|
- STARPU_ABORT();
|
|
|
|
|
|
+ STARPU_CUBLAS_REPORT_ERROR(status);
|
|
|
|
|
|
cudaStreamSynchronize(starpu_cuda_get_local_stream());
|
|
cudaStreamSynchronize(starpu_cuda_get_local_stream());
|
|
|
|
|