Revert "Fixed the bug in get_swizzle_mode function related to elem_size setting. (#115)"

This reverts commit ac428e25e0.

This PR causes wgrad to hang during testing. Revert it until we resolve the issue
This commit is contained in:
yukuai 2025-06-23 17:13:36 +08:00
parent ac428e25e0
commit e82c4139da

View File

@ -17,8 +17,8 @@ def is_tma_multicast_legal(shape_dim: int, block_dim: int, num_tma_multicast: in
return divisible and num_sms % num_tma_multicast == 0
def get_swizzle_mode(block_n: int, is_fp32_out: bool) -> int:
elem_size = 4 if is_fp32_out else 2
def get_swizzle_mode(block_n: int) -> int:
elem_size = 2
for mode_bytes in (128, 64, 32):
if (block_n * elem_size) % mode_bytes == 0:
return mode_bytes
@ -38,7 +38,7 @@ def get_smem_config(num_stages: int, k: int, block_m: int, block_n: int, block_k
assert block_k == 128
# Try swizzle first, as it does not waste shared memory
swizzle_mode = get_swizzle_mode(block_n, is_fp32_out)
swizzle_mode = get_swizzle_mode(block_n)
block_n_padding = get_block_n_padding_for_smem_d(
block_n) if swizzle_mode == 0 else 0