Merge pull request #2195 from alicevision/fix/nodes/imageSegmentation/gpuRequirements

[nodes] ImageSegmentation: increase GPU requirements
This commit is contained in:
Candice Bentéjac 2023-09-21 09:19:37 +02:00 committed by GitHub
commit fdeb53c73b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ from meshroom.core import desc
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}'