Skip to content

Commit e06e3f1

Browse files
committed
GPU: Respect ignoreNonFatalGPUErrors also when debugLevel=1
1 parent 157011e commit e06e3f1

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

GPU/GPUTracking/Base/GPUReconstructionCPU.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ inline int GPUReconstructionCPU::runKernel(const krnlExec& x, const krnlRunRange
307307
t->Stop();
308308
}
309309
}
310-
if (CheckErrorCodes(cpuFallback)) {
310+
if (CheckErrorCodes(cpuFallback) && !mProcessingSettings.ignoreNonFatalGPUErrors) {
311311
throw std::runtime_error("kernel error code");
312312
}
313313
}

Utilities/EPNMonitoring/src/EPNstderrMonitor.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ struct EPNstderrMonitor : fair::mq::Device {
232232
}
233233
bool ConditionalRun() override
234234
{
235+
usleep(100000);
235236
return true;
236237
}
237238
};

0 commit comments

Comments
 (0)