mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-02 02:42:05 +02:00
Compute or Submit selected nodes
This commit is contained in:
parent
b173de5a73
commit
887844541c
4 changed files with 59 additions and 16 deletions
|
@ -201,6 +201,9 @@ class TaskManager(BaseObject):
|
|||
self.checkDuplicates(nodes, "COMPUTATION") # name of the context is important for QML
|
||||
|
||||
nodes = [node for node in nodes if not self.contains(node)] # be sure to avoid non-real conflicts
|
||||
nodes = list(set(nodes))
|
||||
nodes = sorted(nodes, key=lambda x: x.depth)
|
||||
|
||||
chunksInConflict = self.getAlreadySubmittedChunks(nodes)
|
||||
|
||||
if chunksInConflict:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue