Skip to content

Commit 66e0a8c

Browse files
committed
refact(net): drop old dag nx-package
1 parent bc4c221 commit 66e0a8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

graphkit/network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def compile(self):
108108
self.steps = []
109109

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

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

0 commit comments

Comments
 (0)