Skip to content
Snippets Groups Projects
Commit ac94020e authored by Matt Wala's avatar Matt Wala
Browse files

Revert "Use pytools.compute_topological_order"

This reverts commit 16f058b3.
parent c1af18fa
No related branches found
No related tags found
No related merge requests found
......@@ -1422,15 +1422,21 @@ def draw_dependencies_as_unicode_arrows(
def stringify_instruction_list(kernel):
# {{{ topological sort
from pytools.graph import compute_topological_order
printed_insn_ids = set()
printed_insn_order = []
dep_graph = {}
for insn in kernel.instructions:
dep_graph[insn.id] = natsorted(insn.depends_on)
def insert_insn_into_order(insn):
if insn.id in printed_insn_ids:
return
printed_insn_ids.add(insn.id)
printed_insn_order = compute_topological_order(dep_graph)
for dep_id in natsorted(insn.depends_on):
insert_insn_into_order(kernel.id_to_insn[dep_id])
del dep_graph
printed_insn_order.append(insn)
for insn in kernel.instructions:
insert_insn_into_order(insn)
# }}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment