Skip to content

Commit 71352f5

Browse files
danzimmfacebook-github-bot
authored andcommitted
Remove trailing comma causing triton compilation issue (#4470)
Summary: Pull Request resolved: #4470 X-link: facebookresearch/FBGEMM#1528 TSA Reviewed By: njriasan Differential Revision: D78127015 fbshipit-source-id: 57834b4eebe7931ccc5a8feba625003e19618f21
1 parent b959eb1 commit 71352f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fbgemm_gpu/experimental/gen_ai/gen_ai/moe/gather_scatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ def _fbgemm_gather_scale_fp8_rowwise_quant_dense_tokens(
601601
input_ptr + input_token_index.to(tl.int64) * D + tl.arange(0, BLOCK_D)[:]
602602
)
603603
out_2d_ptr = (
604-
output_ptr + output_token_index.to(tl.int64) * D + tl.arange(0, BLOCK_D)[:],
604+
output_ptr + output_token_index.to(tl.int64) * D + tl.arange(0, BLOCK_D)[:]
605605
)
606606
for _ in range(0, D, BLOCK_D):
607607
# Load from L2

0 commit comments

Comments
 (0)