Skip to content

Commit bd45a38

Browse files
committed
ITS: set default memlimit to high
1 parent eeb964e commit bd45a38

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Detectors/ITSMFT/ITS/tracking/include/ITStracking/TrackingConfigParam.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
#ifndef ALICEO2_ITSDPLTRACKINGPARAM_H_
1313
#define ALICEO2_ITSDPLTRACKINGPARAM_H_
1414

15+
#include <limits>
16+
1517
#include "CommonUtils/ConfigurableParam.h"
1618
#include "CommonUtils/ConfigurableParamHelper.h"
1719

@@ -49,7 +51,7 @@ struct VertexerParamConfig : public o2::conf::ConfigurableParamHelper<VertexerPa
4951

5052
int nThreads = 1;
5153
bool printMemory = false;
52-
size_t maxMemory = 12000000000UL;
54+
size_t maxMemory = std::numeric_limits<size_t>::max();
5355
bool dropTFUponFailure = false;
5456

5557
O2ParamDef(VertexerParamConfig, "ITSVertexerParam");
@@ -94,7 +96,7 @@ struct TrackerParamConfig : public o2::conf::ConfigurableParamHelper<TrackerPara
9496

9597
int nThreads = 1;
9698
bool printMemory = false;
97-
size_t maxMemory = 12000000000UL;
99+
size_t maxMemory = std::numeric_limits<size_t>::max();
98100
bool dropTFUponFailure = false;
99101
bool fataliseUponFailure = true; // granular management of the fatalisation in async mode
100102

0 commit comments

Comments
 (0)