Skip to content

Commit

Permalink
fix " usage
Browse files Browse the repository at this point in the history
  • Loading branch information
saienduri authored Oct 14, 2024
1 parent 421d1b1 commit aa24255
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions attentionbench/attention_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def get_lowering_config(self) -> str:
return (
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"workgroup = [{','.join([str(x) for x in self.wg_tiles])}], "
+ f"reduction = [{','.join([str(x) for x in self.red_tiles])}]"
+ " }"
+ f">"
)
Expand Down

0 comments on commit aa24255

Please sign in to comment.