fix: exclude additional unreachable nodes (#16329)

This commit is contained in:
Novice
2025-03-20 16:53:56 +08:00
committed by GitHub
parent 3e84c77bbb
commit 437dcbdd68
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)