Skip to content

Commit 2a2edee

Browse files
authored
Increase LUT table size and make it configurable (#15630)
1 parent f8a99bf commit 2a2edee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

GPU/Workflow/src/GPUWorkflowSpec.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ void GPURecoWorkflowSpec::init(InitContext& ic)
260260
if (mConfig->configCalib.matLUT == nullptr) {
261261
LOGF(fatal, "Error loading matlut file");
262262
}
263-
} else {
264-
mConfig->configProcessing.lateO2MatLutProvisioningSize = 50 * 1024 * 1024;
263+
} else if (mConfig->configProcessing.lateO2MatLutProvisioningSize <= 0) {
264+
mConfig->configProcessing.lateO2MatLutProvisioningSize = 55 * 1024 * 1024;
265265
}
266266

267267
if (mSpecConfig.readTRDtracklets) {

0 commit comments

Comments
 (0)