From 3be63c7c3a552215afc945183e232fded907f7e4 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Wed, 20 Sep 2023 21:06:17 +0200 Subject: [PATCH] [nodes] ImageSegmentation: update GPU requirements to avoid computation failures --- meshroom/nodes/aliceVision/ImageSegmentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/nodes/aliceVision/ImageSegmentation.py b/meshroom/nodes/aliceVision/ImageSegmentation.py index 3c99b05edf..05cf592251 100644 --- a/meshroom/nodes/aliceVision/ImageSegmentation.py +++ b/meshroom/nodes/aliceVision/ImageSegmentation.py @@ -6,7 +6,7 @@ class ImageSegmentation(desc.AVCommandLineNode): commandLine = 'aliceVision_imageSegmentation {allParams}' size = desc.DynamicNodeSize('input') - gpu = desc.Level.NORMAL + gpu = desc.Level.INTENSIVE parallelization = desc.Parallelization(blockSize=50) commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'