Skip to content

Commit 8d53c5f

Browse files
authored
fix: fix gf1250 naming style (#787)
1 parent c0edc8a commit 8d53c5f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

python/flydsl/expr/rocdl/cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def compute_mcast_masks(local_x, local_y, cluster_m: int, cluster_n: int):
7373
"""Compute MCAST workgroup_mask values for A and B matrices.
7474
7575
Hardware flat WG index within a cluster uses X-inner ordering
76-
(MI400 Shader Programming, TTMP6 layout, section 3.5.5.1):
76+
(gfx1250 Shader Programming, TTMP6 layout, section 3.5.5.1):
7777
7878
flat_wg_id = wg_x + wg_y * nwg_x = local_x + local_y * cluster_m
7979

tests/perf/bench_tdm_bandwidth_gfx1250.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ def main():
486486
print(f"ERROR: TDM benchmark requires gfx1250, got {arch}", file=sys.stderr)
487487
sys.exit(1)
488488

489-
# MI450: 8 XCDs × 256 CUs = 2048 CUs total
489+
# gfx1250: 8 XCDs × 256 CUs = 2048 CUs total
490490
grid_sizes = [(4, 4), (8, 8), (16, 16), (32, 32), (32, 64), (64, 64), (64, 128), (128, 128), (256, 128), (256, 256)]
491491
# Multicast mode: square grids only (fewer combos, cleaner comparison)
492492
mcast_grid_sizes = [(8, 8), (16, 16), (32, 32), (64, 64), (128, 128)]

0 commit comments

Comments
 (0)