fix: exclude additional unreachable nodes (#16329)

This commit is contained in:
Novice 2025-03-20 16:53:56 +08:00 committed by GitHub
commit 437dcbdd68
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 370 additions and 1 deletions

View file

@ -65,7 +65,7 @@ class StreamProcessor(ABC):
# Issues: #13626
if (
finished_node_id in self.graph.node_parallel_mapping
and edge.target_node_id not in self.graph.parallel_mapping
and edge.target_node_id not in self.graph.node_parallel_mapping
):
continue
unreachable_first_node_ids.append(edge.target_node_id)