Skip to content

Commit

Permalink
fix list comprehension
Browse files Browse the repository at this point in the history
  • Loading branch information
Groverkss committed Oct 8, 2024
1 parent 5e1c1d9 commit 421d1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion attentionbench/attention_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def get_lowering_config(self) -> str:
f"#iree_gpu.lowering_config<"
+ "{ "
+ f"workgroup = [{",".join([str(x) for x in self.wg_tiles])}], "
+ f"reduction = [{",".join(str(x) for x in self.red_tiles)}]"
+ f"reduction = [{",".join([str(x) for x in self.red_tiles])}]"
+ " }"
+ f">"
)
Expand Down

0 comments on commit 421d1b1

Please sign in to comment.