[NVIDIA] Disable prefix minimax #966
Merged
Claude / Claude Code Review
completed
Mar 27, 2026 in 9m 32s
Code review found 2 potential issues
Found 2 candidates, confirmed 2. See review comments for details.
Details
| Severity | Count |
|---|---|
| 🔴 Important | 0 |
| 🟡 Nit | 0 |
| 🟣 Pre-existing | 1 |
| Severity | File:Line | Issue |
|---|---|---|
| 🟣 Pre-existing | benchmarks/single_node/minimaxm2.5_fp8_b200.sh:43-49 |
EP_SIZE condition always enables expert parallel (-ge 1 should be -gt 1) |
Annotations
Check notice on line 49 in benchmarks/single_node/minimaxm2.5_fp8_b200.sh
claude / Claude Code Review
EP_SIZE condition always enables expert parallel (-ge 1 should be -gt 1)
Pre-existing bug in minimaxm2.5_fp8_b200.sh and minimaxm2.5_fp8_h200.sh: the EP_SIZE guard uses -ge 1 instead of -gt 1, making the else branch (which disables expert parallel) completely unreachable. Fix by changing [ "$EP_SIZE" -ge 1 ] to [ "$EP_SIZE" -gt 1 ] in both scripts, matching the pattern already used in h100.sh and mi355x.sh.
Loading