1. Introduction
Semi-structured sparsity has become a central hardware-oriented sparsity format for neural network acceleration [
1]. Its most established instance is 2:4 sparsity, where two nonzero weights are retained in every group of four [
2]; this format is natively supported by NVIDIA sparse Tensor Cores and has become the de facto reference point for semi-structured sparse training and pruning. A natural next algorithmic question is whether the same local N:M principle can be pushed to a more restrictive regime, such as 1:4 sparsity, where only one weight remains active in every group of four [
3,
4]. This setting is attractive because it preserves the group-of-four structure familiar from 2:4 sparsity while increasing the sparsity ratio to 75%. The main difficulty, however, is no longer only how to exploit a sparse pattern at inference time, but whether pre-training can preserve model quality under such an extreme legal constraint.
Although our title is hardware motivated, the technical claim of this paper is algorithmic. Current NVIDIA GPUs provide native sparse Tensor Core support for 2:4 execution, but not for native 1:4 execution. We therefore do not claim measured native 1:4 speedup on current NVIDIA hardware. Throughout the paper, “1:4 NVIDIA sparsity” refers to a hardware-forward N:M target that keeps the local group-of-four structure of the existing NVIDIA semi-structured sparsity interface, rather than to an already deployed NVIDIA execution mode. We want to clarify that many efficient-AI techniques first emerge as algorithmic evidence, and then hardware manufacturers provide support for them, such as 8-bit Training [
5,
6,
7,
8]. Our primary contribution is to study whether sparse pre-training algorithms can make this more aggressive 1:4 target viable in model quality. For hardware evaluation, we report measured speedups only for native 2:4 execution on NVIDIA hardware, and we separately provide a clearly labeled CSR sparse-GEMM surrogate as a projection for potential future 1:4 acceleration.
In this work, we show that moving from 2:4 to 1:4 sparsity is not a simple increase in sparsity ratio, but a regime shift in sparse pre-training. The 1:4 constraint changes the optimization problem in three coupled ways. First, proxy-gradient dense-to-sparse methods [
3,
9] become increasingly mismatched with the actually executed sparse model, because most weights in each local group are inactive in the forward pass while still receiving surrogate gradients. Second, low-rank residual branches [
10] become more valuable, because the sparse backbone loses most local degrees of freedom and therefore needs an explicit compensation path for missing function directions. Third, matrix-geometry optimizers such as Muon-style [
11] Newton–Schulz updates are promising but cannot be directly transplanted into dynamic sparse training, because the active support changes after each topology refresh.
Appendix A provides the supporting sparsity-regime studies.
The first regime-shift signal concerns topology learning. Existing semi-structured sparse training methods such as STE-based [
12] training typically maintain dense latent weights and use Straight-Through Estimator surrogate gradients to update weights that are masked out in the forward computation. This mismatch is moderate in 2:4 sparsity, where half of the weights in each local group remain active, but it is amplified in 1:4 sparsity, where three quarters of the weights are inactive during the forward pass [
13]. This motivates true sparse-to-sparse training: only active weights are optimized, and the sparse topology evolves through legal remove-regrow operations. As shown in
Table A1, the gap between proxy-gradient training and sparse-to-sparse topology learning widens sharply as the legal support becomes more restrictive, supporting the view that 1:4 requires a different training paradigm.
The second signal concerns residual capacity. In standard dense-model adaptation, LoRA is usually introduced as a lightweight task-adaptation module on top of an already expressive pretrained model [
14]. In semi-structured sparse pre-training, its role is different: the auxiliary low-rank branch acts as a train-from-scratch residual compensation path for function directions suppressed by the sparse backbone.
Table A2 shows that the gain from a 1M-param LoRA branch grows as the sparsity pattern becomes more restrictive. This does not by itself make low-rank compensation the main contribution of our method, but it motivates including a small residual branch when studying the extreme 1:4 regime.
The third and most important signal concerns optimization. Recent matrix-geometry optimizers [
15] can substantially improve dense neural network training by shaping updates at the matrix level rather than treating coordinates independently [
16]. Our sparsity-level optimizer sweep in
Table A3 shows that such geometry is also useful for sparse pre-training. However, dynamic N:M sparse training introduces a topology mismatch that dense optimizers do not face: after each refresh, removed weights leave the executed model, newly activated weights enter with little optimizer history, and a dense matrix update may place mass on inactive coordinates. This identifies the central technical bottleneck of 1:4 sparse-to-sparse pre-training: matrix geometry must be made compatible with a changing legal sparse support.
Motivated by this diagnosis, we propose CHTsNM, a true sparse-to-sparse training framework centered on Topology-Aware Newton–Schulz optimization (TANS). TANS is the main technical contribution of this work. It adapts Newton–Schulz-style matrix updates to dynamic semi-structured sparse topology through three design choices: active-mask projection, which prevents the optimizer from becoming a hidden dense optimizer; active-support RMS matching, which preserves the trusted magnitude of the sparse preconditioned base update; and refresh-aware ramping, which gradually restores matrix geometry after topology changes. In this sense, TANS is not a direct application of Muon or a generic dense matrix optimizer to sparse weights, but a topology-aware interface between sparse preconditioning and matrix-level update geometry.
CHTsNM includes two lightweight supporting mechanisms around TANS. First, Contextually Modulated LoRA (CoMoLoRA) treats the auxiliary branch as an input-adaptive residual compensator for missing sparse-backbone directions. It starts from standard LoRA and modulates the LoRA rank space with input context, so the residual branch can emphasize or suppress compensation directions for different tokens. Second, Motif Pattern Revisitation (MPR) extends CHTs24-style sparse-to-sparse topology learning from block-wise motifs to row-wise N:M masks and discourages ineffective same-pattern revisits during row-wise refresh. We emphasize that CoMoLoRA and MPR are not positioned as equally central innovations to TANS. They are supporting mechanisms designed to test two consequences of the 1:4 regime shift: the increased value of residual compensation and the need for effective row-wise legal-pattern exploration.
We evaluate CHTsNM on LLaMA [
17] pre-training benchmarks, focusing on 1:4 sparsity with additional 2:4 comparisons to characterize the sparsity-regime transition. We compare CHTsNM against STE [
18], SR-STE [
3], CAST [
19], and CHTs24 [
13] as the main method-level baselines. Each baseline is evaluated under its intended sparse-training rule, while CHTsNM uses TANS because topology-aware optimization is the proposed method rather than an external tuning advantage. To make this optimizer contribution explicit, we also provide an optimizer-controlled diagnostic in which the CHTs24 topology engine is fixed and only the update rule is changed. This separates the question of whether CHTsNM outperforms prior sparse-training recipes from the question of which optimizer design choices account for the gain.
The empirical results support the TANS-centered interpretation. CHTsNM substantially outperforms STE, SR-STE, CAST, and CHTs24 under matched sparsity settings, and its no-branch variant already improves strongly over prior sparse baselines, showing that the gain is not merely due to auxiliary parameters. Ablations show that TANS contributes the dominant improvement, while CoMoLoRA and MPR provide smaller but complementary gains in the regimes where they are designed to help. Together, these results suggest that 1:4 sparse pre-training can be very close to dense-level quality when dynamic sparse topology is paired with topology-aware matrix optimization, and when residual compensation and row-wise pattern exploration are added as targeted supporting mechanisms.
Our contributions are summarized as follows:
We provide a systematic study of the transition from 2:4 to 1:4 semi-structured sparse pre-training, identifying 1:4 sparsity as a regime shift rather than a linear increase in sparsity ratio. We also explicitly separate this algorithmic study from any claim of currently available native 1:4 execution on NVIDIA GPUs.
We propose Topology-Aware Newton–Schulz optimization (TANS), a refresh-aware matrix optimizer for dynamic N:M sparse-to-sparse training. TANS makes matrix-geometry updates compatible with changing sparse supports through active-mask projection, active-support scale matching, and refresh-aware ramping.
We instantiate TANS inside CHTsNM, a practical sparse-to-sparse training framework for extreme N:M sparsity. CHTsNM includes two supporting mechanisms: CoMoLoRA for input-adaptive low-rank residual compensation, and MPR for row-wise legal-pattern exploration.
We provide method-level, component-level, and optimizer-controlled experiments showing that TANS is the dominant source of improvement, while CoMoLoRA and MPR provide complementary gains. We further separate measured native 2:4 speedups from a clearly labeled CSR surrogate analysis for potential future 1:4 acceleration.