Skip to content
Snippets Groups Projects
Commit a873dbd9 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

dump_schedule: print barrier kind

parent f7df3d16
No related branches found
No related tags found
No related merge requests found
...@@ -371,7 +371,7 @@ def dump_schedule(kernel, schedule): ...@@ -371,7 +371,7 @@ def dump_schedule(kernel, schedule):
insn_str = sched_item.insn_id insn_str = sched_item.insn_id
lines.append(indent + insn_str) lines.append(indent + insn_str)
elif isinstance(sched_item, Barrier): elif isinstance(sched_item, Barrier):
lines.append(indent + "---BARRIER---") lines.append(indent + "---BARRIER:%s---" % sched_item.kind)
else: else:
assert False assert False
......
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