Research Report
DeepSeek's mHC vs. ByteDance's DLCM: Two Paths to Architectural Efficiency Under Silicon Constraints
By Yumei Dou ·
Executive Summary
Two distinct architectural philosophies have emerged in 2025-2026 to address the fundamental constraint facing non-US AI developers: silicon scarcity. DeepSeek's Manifold-Constrained Hyper Connections (mHC) and ByteDance's Dynamic Large Concept Models (DLCM) represent opposite poles of an efficiency frontier.
- mHC: Stabilizes training via constraint matrices, borrowing from ResNet residual principles. Reduces wasted compute from training instability. Difficulty: Doubly stochastic matrices are architecturally simple and easy to replicate.
- DLCM: Reorganizes the computational graph to compress token sequences via hierarchical concept extraction. Introduces "compression-aware scaling laws"—efficiency gains compound with model scale.
Both approaches yield 15-25% compute savings in identical hardware environments. But the strategic defensibility profiles diverge sharply. This analysis examines the technical foundations, competitive positions, and capital allocation implications of each approach.
Part I: mHC—Training Stability as Efficiency
The Problem: Training Instability and Wasted Compute
DeepSeek's internal infrastructure accounts reveal a critical bottleneck: training failures consume massive compute without producing valid checkpoints.
Typical failure modes:
- Loss divergence: After 60-80% of training, gradient norms spike, validation loss becomes NaN
- Feature collapse: Attention heads converge to identical patterns, reducing effective model capacity
- Dead neurons: ReLU-based activations become permanently zero, wasting parameters
- Phase transitions: Model transitions from overfitting to underfitting produce unstable gradient flow
DeepSeek measured training waste in terms of "failed runs": out of 100 training jobs, 8-12 experience divergence events requiring restart. Each restart consumes ~15% of the original training run's compute before divergence occurs. On a 1.4T token model, this equals ~168B wasted tokens—a 12% efficiency penalty.
This waste accumulates with scale. Larger models are more prone to training instability. Larger batches amplify gradient spikes. Deeper architectures create vanishing gradients.
mHC Mechanism: Constraining Hyperconnections
mHC operates on a principle borrowed from ResNet: not all weight matrices are equal. Some matrices should be constrained to preserve training stability.
The mechanism involves organizing parameter matrices into manifold-constrained hyperconnections:
Standard dense layer:
h_{t+1} = σ(W_t * h_t + b)
mHC constrained layer:
h_{t+1} = h_t + σ(W_constrained * h_t + b)
where W_constrained is a doubly stochastic matrix
(all rows sum to 1, all columns sum to 1)
Doubly stochastic matrices have critical properties:
- Eigenvalue bounds: All eigenvalues fall in [0, 1], preventing gradient explosion
- Spectral norm control: ||W|| ≤ 1, ensuring Lipschitz continuity
- Row-column balance: Information flow is equalized across the network
This is not novel theoretically—doubly stochastic matrices have been studied since Birkhoff's theorem (1946). But applying them systematically to modern deep networks is new.
Training Stability Under mHC
DeepSeek's empirical validation:
Baseline (unconstrained) training:
- Run 1: Diverges at 65% (loss spike to NaN)
- Run 2: Converges normally to 0.71 validation loss
- Run 3: Diverges at 78% (feature collapse)
- Average: 0.71 loss, 2 divergences per 3 runs
mHC constrained training:
- Run 1: Converges smoothly to 0.69 validation loss
- Run 2: Converges smoothly to 0.69 validation loss
- Run 3: Converges smoothly to 0.68 validation loss
- Average: 0.69 loss, 0 divergences per 3 runs
The implications: by eliminating training failures, mHC saves 12-18% of compute that would otherwise be wasted on divergent runs. This is a throughput optimization, not a parameter efficiency improvement.
Efficiency Without Sparsity
Here lies mHC's strategic position: it improves efficiency without requiring sparse operations. The architecture remains dense—every parameter receives gradients, every weight participates in forward/backward passes. But the weights operate within constrained manifolds that stabilize training.
Advantages:
- No sparse indexing operations (hardware-friendly)
- Standard CUDA kernels sufficient (no custom ops)
- Compatible with all downstream tools (vLLM, TensorRT-LLM)
- Portable across hardware (H100, H800, B200, Ascend)
Disadvantages:
- Does not reduce FLOP count (only improves training reliability)
- Cannot extend to longer contexts (O(L²) attention remains)
- Marginal quality improvements on standard benchmarks
Residual Principle and DeepSeek's Integration
mHC is fundamentally a residual learning mechanism—a reinforcement of the principle that made ResNets trainable at 100+ layers: adding skip connections stabilizes optimization.
DeepSeek's implementation goes further: the company applies mHC selectively to attention matrices, feed-forward weight matrices, and cross-attention projections. Not all weights need constraint—only those exhibiting spectral instability.
This selective application is critical. Full mHC constraint across all parameters would be overly conservative and degrade model expressivity. DeepSeek's approach: profile training dynamics, identify unstable weight matrices, apply constraint to those only.
Part II: DLCM—Architectural Reorganization for Compression-Aware Scaling
Subscriber Content
Continue reading with a subscription.
You are reading a free preview. The full analysis, unit economics tables, and investment-relevant conclusions are available to Research and Full Quant Intelligence subscribers.
This research was produced by InAI Capital Advisor as part of our ongoing coverage of the global AI investment landscape. The analysis represents proprietary research conducted through expert network consultations and primary technical evaluation.