From 275c1c920f3fc8ef2b87c69713249ffcffb052c3 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Fri, 26 Jul 2019 12:18:53 +0100 Subject: [PATCH] More info dump on error from CUDA --- Grid/threads/Pragmas.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Grid/threads/Pragmas.h b/Grid/threads/Pragmas.h index af74d03b..2ed33d67 100644 --- a/Grid/threads/Pragmas.h +++ b/Grid/threads/Pragmas.h @@ -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); \ } \ }