Skip to content

Commit

Permalink
refact(net): drop old dag nx-package
Browse files Browse the repository at this point in the history
  • Loading branch information
ankostis committed Oct 1, 2019
1 parent bc4c221 commit 66e0a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphkit/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def compile(self):
self.steps = []

# create an execution order such that each layer's needs are provided.
ordered_nodes = list(nx.dag.topological_sort(self.graph))
ordered_nodes = list(nx.topological_sort(self.graph))

# add Operations evaluation steps, and instructions to free data.
for i, node in enumerate(ordered_nodes):
Expand Down

0 comments on commit 66e0a8c

Please sign in to comment.