mHC-lite: You Don't Need 20 Sinkhorn-Knopp Iterations
Yongyi Yang, Jianyang Gao
TL;DR
This work tackles instability and portability issues in hyper-connected residuals by replacing SK-based projection with a Birkhoff–von Neumann reparameterization, yielding mHC-lite that expresses each residual matrix as a convex combination of permutation matrices to guarantee exact doubly stochasticity. By using only native matrix operations, mHC-lite removes the need for specialized SK kernels and reduces implementation barriers, while matching or surpassing mHC in downstream performance and improving training stability. Empirical results on nanoGPT-scale models across OpenWebText and FineWeb-Edu show that mHC-lite offers higher throughput and eliminates the residual instabilities observed in HC and mHC, with code available for reproduction. The approach highlights that exactness can be more efficient than approximate projection in practice and points to scalable strategies (e.g., subset permutation sampling) for larger residual dimensions.
Abstract
Hyper-Connections (HC) generalizes residual connections by introducing dynamic residual matrices that mix information across multiple residual streams, accelerating convergence in deep neural networks. However, unconstrained residual matrices can compromise training stability. To address this, DeepSeek's Manifold-Constrained Hyper-Connections (mHC) approximately projects these matrices onto the Birkhoff polytope via iterative Sinkhorn--Knopp (SK) normalization. We identify two limitations of this approach: (i) finite SK iterations do not guarantee exact doubly stochasticity, leaving an approximation gap that can accumulate through network depth and undermine stability; (ii) efficient SK implementation requires highly specialized CUDA kernels, raising engineering barriers and reducing portability. Motivated by the Birkhoff--von Neumann theorem, we propose mHC-lite, a simple reparameterization that explicitly constructs doubly stochastic matrices as convex combinations of permutation matrices. This approach guarantees exact doubly stochasticity by construction and can be implemented using only native matrix operations. Extensive experiments demonstrate that mHC-lite matches or exceeds mHC in performance while achieving higher training throughput with a naive implementation and eliminating the residual instabilities observed in both HC and mHC. The code is publicly available at https://github.com/FFTYYY/mhc-lite.
