Skip to content

Commit b350fde

Browse files
comment out unused var
Signed-off-by: cliu-us <[email protected]>
1 parent ed1db7a commit b350fde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fms_mo/custom_ext_kernels/triton_kernels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def imatmul_kernel(
235235
accumulator = tl.zeros((BLOCK_SIZE_M, BLOCK_SIZE_N), dtype=tl.int32)
236236
## ------ prepare LSB rounding/truncation masks -------
237237
round_bit = 1 << (chunk_trun_bits - 1) if chunk_trun_bits > 0 else 0
238-
msb_mask = 0x00FFFFFF # only needed when simulating truncation on MSB
238+
# msb_mask = 0x00FFFFFF # only needed when simulating truncation on MSB
239239
## ---------------------------------------------------------
240240

241241
for k in range(0, tl.cdiv(K, BLOCK_SIZE_K)):

0 commit comments

Comments
 (0)