Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GPU/GPUTracking/Base/cuda/GPUReconstructionCUDArtc.cu
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
5 changes: 3 additions & 2 deletions Utilities/Tools/jobutils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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})
Expand Down