summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Tests/Cuda/Complex/dynamic.cu3
-rw-r--r--Tests/Cuda/Complex/file3.cu3
2 files changed, 4 insertions, 2 deletions
diff --git a/Tests/Cuda/Complex/dynamic.cu b/Tests/Cuda/Complex/dynamic.cu
index b0a27d4..fc22c8b 100644
--- a/Tests/Cuda/Complex/dynamic.cu
+++ b/Tests/Cuda/Complex/dynamic.cu
@@ -28,6 +28,7 @@ EXPORT void cuda_dynamic_lib_func()
cudaError_t err = cudaGetLastError();
if(err != cudaSuccess)
{
- std::cerr << cudaGetErrorString(err) << std::endl;
+ std::cerr << "DetermineIfValidCudaDevice [SYNC] failed: "
+ << cudaGetErrorString(err) << std::endl;
}
}
diff --git a/Tests/Cuda/Complex/file3.cu b/Tests/Cuda/Complex/file3.cu
index 0c8a09b..1daf47e 100644
--- a/Tests/Cuda/Complex/file3.cu
+++ b/Tests/Cuda/Complex/file3.cu
@@ -22,7 +22,8 @@ int file3_launch_kernel(int x)
cudaError_t err = cudaGetLastError();
if(err != cudaSuccess)
{
- std::cerr << cudaGetErrorString(err) << std::endl;
+ std::cerr << "file3_kernel [SYNC] failed: "
+ << cudaGetErrorString(err) << std::endl;
return x;
}
return r.sum;