diff --git a/GPU/GPUTracking/Base/cuda/GPUReconstructionCUDArtc.cu b/GPU/GPUTracking/Base/cuda/GPUReconstructionCUDArtc.cu index 66c02d6ed251c..32286905f2a71 100644 --- a/GPU/GPUTracking/Base/cuda/GPUReconstructionCUDArtc.cu +++ b/GPU/GPUTracking/Base/cuda/GPUReconstructionCUDArtc.cu @@ -20,7 +20,7 @@ #define GPUCA_DETERMINISTIC_CODE(...) GPUCA_DETERMINISTIC_CODE(__VA_ARGS__) #define GPUCA_RTC_CONSTEXPR GPUCA_RTC_CONSTEXPR -// GPUReconstructionCUDAIncludesSystem.h prependended by CMakewithout preprocessor running +// GPUReconstructionCUDAIncludesSystem.h prependended by CMake without preprocessor running #include "GPUReconstructionCUDADef.h" #include "GPUReconstructionIncludesDeviceAll.h" diff --git a/Utilities/Tools/jobutils.sh b/Utilities/Tools/jobutils.sh index 54f1394197815..7853f281f004b 100644 --- a/Utilities/Tools/jobutils.sh +++ b/Utilities/Tools/jobutils.sh @@ -107,6 +107,7 @@ taskwrapper() { STARTTIME=$SECONDS + rm -f encountered_exceptions_list_${logfile} # launch the actual command in the background echo "Launching task: ${command} &> $logfile &" # the command might be a complex block: For the timing measurement below @@ -191,10 +192,10 @@ taskwrapper() { exclude_pattern="-e \"To change the tolerance or the exception severity\"" - grepcommand="grep -a -H ${pattern} $logfile ${JOBUTILS_JOB_SUPERVISEDFILES} | grep -a -v ${exclude_pattern} >> encountered_exceptions_list 2>/dev/null" + grepcommand="grep -a -H ${pattern} $logfile ${JOBUTILS_JOB_SUPERVISEDFILES} | grep -a -v ${exclude_pattern} >> encountered_exceptions_list_${logfile} 2>/dev/null" eval ${grepcommand} - grepcommand="cat encountered_exceptions_list 2>/dev/null | wc -l" + grepcommand="cat encountered_exceptions_list_${logfile} 2>/dev/null | wc -l" # using eval here since otherwise the pattern is translated to a # a weirdly quoted stringlist RC=$(eval ${grepcommand})