1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-05 11:45:56 +01:00

More info dump on error from CUDA

This commit is contained in:
Peter Boyle 2019-07-26 12:18:53 +01:00
parent fe700a183a
commit 275c1c920f

View File

@ -101,7 +101,9 @@ void LambdaApplySIMT(uint64_t Isites, uint64_t Osites, lambda Lambda)
cudaDeviceSynchronize(); \
cudaError err = cudaGetLastError(); \
if ( cudaSuccess != err ) { \
printf("Cuda error %s\n",cudaGetErrorString( err )); \
printf("Cuda error %s \n", cudaGetErrorString( err )); \
puts(__FILE__); \
printf("Line %d\n",__LINE__); \
exit(0); \
} \
}