Resolve the Blackwell TMEM over-allocation issue in the official Mamba-3 backward
Resolve the open state-spaces/mamba#904 issue by preventing the official Mamba-3 backward's Blackwell compiler path from requesting 544 Tensor Memory columns when the hardware permits only 512, thereby eliminating its compilation failure and forced slow fallback.
References
This constraint is the crux of the open issue state-spaces/mamba#904: the official Mamba-3 backward uses the tensor-core matmul (tl.dot), and at the normal performance setting a compiler pass requests 544 TMEM columns against the hardware's 512, so the kernel fails to compile and falls back to a path reported as $38.7\times$ slower on GB200/B200. The tensor-memory half of the failure is addressed by a merged Triton change (PR #9093) not yet shipped in a Mamba release, so a pinned pre-#9093 stack still reproduces it.