Skip to content

Commit

Permalink
loop_fusion: remove debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSt98 committed Sep 10, 2024
1 parent 04eeb8a commit b97c5f9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion loki/transformations/transform_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ def loop_fusion(routine):
# First, determine the collapse depth and extract user-annotated loop ranges from pragmas
collapse = [param.get('collapse', None) for param in parameters]
insert_locs = [param.get('insert', False) for param in parameters]
print(f"insert_location: {insert_locs}")
if collapse != [collapse[0]] * len(collapse):
raise RuntimeError(f'Conflicting collapse values in group "{group}"')
collapse = int(collapse[0]) if collapse[0] is not None else 1
Expand Down

0 comments on commit b97c5f9

Please sign in to comment.