What problem does it solve? GEMM operations dispatched through hipBLASLt on AMD Instinct GPUs often run slower than they could because the library's default heuristic does not always pick the fastest pre-compiled solution, and naive benchmarking with hipblaslt-bench produces inflated or misleading numbers through cache reuse, clock boost, and misread solution identifiers. ## Core Features & Use Cases - Exact problem capture: Log every matmul from a live workload with HIPBLASLT_LOG_MASK=32 and replay the emitted hipblaslt-bench commands verbatim, avoiding the M/N transpose trap. - Full solution racing: Run --algo_method all with --print_kernel_info to race every pre-compiled solution and record the true solution index rather than the unstable bracket number. - Measurement hygiene: Use --rotating buffers, standalone index replay, and interleaved A/B comparison against the heuristic default to separate real gains from race-inflated numbers, including gfx950-specific guidance where MX formats cannot be raced at all. - Use Case: A serving engineer notices torch matmuls dominating latency on an MI300X, captures the exact GEMM shapes from the workload, races all 1231 solutions, and deploys the winning solution index through the aiter tuner CSV for a measured throughput gain. ## Quick Start Capture the exact GEMM problems from my running PyTorch workload using HIPBLASLT_LOG_MASK, then race all hipBLASLt solutions for the hottest shape and tell me the winning solution index to deploy.