Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolves #350 -- Adds support for segmenting LinearPipelines #374

Merged
23 commits merged into from
Sep 28, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Typo fix
  • Loading branch information
drobison00 committed Sep 27, 2022
commit 75defc9e307453893e59ba9a809ac5b6543841e7
2 changes: 1 addition & 1 deletion morpheus/pipeline/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def inner_build(builder: srf.Builder, segment_id: str):
segment_graph = self._segment_graphs[segment_id]

# This should be a BFS search from each source nodes; but, since we don't have source stage loops
# topo_sort provides a resonable approximation.
# topo_sort provides a reasonable approximation.
for stage in networkx.topological_sort(segment_graph):
if (stage.can_build()):
stage.build(builder)
Expand Down