[AMD][No-Merge] Simplify fused allreduce + RMSNorm and remove hidden_dim allowlist (#21986)

Co-authored-by: HAI <hixiao@gmail.com>
This commit is contained in:
Hubert Lu
2026-04-11 23:47:08 -07:00
committed by GitHub
co-authored by HAI
parent 9a4e8089ff
commit edaa5973d4
4 changed files with 263 additions and 56 deletions
@@ -337,13 +337,13 @@ def parse_args():
parser.add_argument(
"--prefill-shapes",
type=str,
default="2048x8192,8192x8192,16384x8192",
default="2048x2880,2048x8192,8192x8192,16384x8192",
help="Comma-separated MxN shapes for eager mode.",
)
parser.add_argument(
"--decode-shapes",
type=str,
default="1x8192,2x8192,4x8192,8x8192,16x8192",
default="1x2880,4x2880,16x2880,1x8192,2x8192,4x8192,8x8192,16x8192",
help="Comma-separated MxN shapes for graph mode.",
)
parser.add_argument("--warmup", type=int, default=10)