Matrix-aware optimizers improve large-model training in many settings, but AdamW remains the robust baseline; optimizer choice must be evaluated compositionally across budgets (tokens, FLOPs, time, memory) because rankings flip with scale, batch size, tuning budget and system constraints.
Citation observations
Cumulative provider counts captured on specific dates; providers are never combined.
No provider observation is available for this paper.
Missing data, not a zero citation count.
Neural-network optimization in 2025-2026 is no longer well described as a succession of new Adam variants. The design space has expanded from coordinates to matrices and layers, from fixed training horizons to policies over time, and from mathematical update rules to state representations that must survive sharding and low-precision computation. This survey organizes recent optimizers and training optimization methods along four largely independent axes: temporal estimation, update geometry, horizon management, and representation and systems. It connects the spectral normalization of Muon, the historical matrix statistics of Shampoo and SOAP, adaptive and hybrid matrix methods, memory-efficient optimizers, schedule-free training, small-batch corrections, and quantized optimizer states. The central empirical conclusion is deliberately non-triumphal: matrix-aware methods represent a genuine advance, but there is no context-independent replacement for AdamW. Rankings change with model scale, data-to-parameter ratio, batch size, schedule, parameter partition, tuning budget, and whether the target metric is tokens, FLOPs, wall-clock time, or memory. The practical consequence is a compositional view of optimizer design and a stricter protocol for evaluating optimizer claims.
Summary
Main Finding
Matrix-aware optimizers and richer temporal/representation strategies are a genuine algorithmic advance, but they do not provide a context-free replacement for AdamW. Optimizer design has become compositional: four largely independent axes (temporal estimation, update geometry, horizon management, and representation/systems) interact with scale, batch size, parameter class, memory, and the evaluation metric (tokens, FLOPs, wall time, memory). Practical optimizer choice therefore depends on the resource budget and the training protocol; a stricter, multi-budget evaluation protocol is required to make reproducible economic claims about training cost and speedups.
Key Points
- Four orthogonal axes organize modern optimizers:
- Temporal estimation (how gradient history is aggregated; e.g., AdEMAMix, MARS, spike resets).
- Update geometry (coordinate, matrix/whitening, spectral/norm-aware, or curvature-based choices; e.g., Adam, Shampoo, Muon).
- Horizon management (learning-rate schedules, schedule-free methods, checkpoint merging, cooldowns).
- Representation and systems (which statistics are stored, quantization/precision, sharding, communication).
- A useful decomposition of an optimizer is an optimizer-stack: Tt (temporal estimator) → Pt (geometry) → Qt (representation/serialization) → Rt (update, schedule, regularization). Different papers often change only one box, and many modern implementations mix ideas across boxes.
- AdamW remains the practical baseline because it is predictable, well-understood, easy to shard and quantize, and backed by extensive engineering recipes. New methods must beat AdamW’s total risk (statistical, implementation, and systems) — not merely outperform a loss curve in a narrow protocol.
- Matrix-aware methods (Shampoo, SOAP, SPlus-family, Muon, hybrids) improved training by exploiting row/column or spectral structure:
- Whitening-type transforms (Shampoo, SOAP) balance covariance and reduce variance; their empirical value often comes from variance adaptation rather than “second-order” curvature estimation per se.
- Spectral-norm / polar-factor approaches (Muon, Scion) impose norm-aware constraints, changing the trust-region geometry; these are not identical to curvature inversion.
- Hybrids proliferate because different blocks (token embeddings, attention, MLP weights, heads) have different symmetries and require different treatments.
- Temporal estimators matter: multi-timescale EMAs (AdEMAMix), variance-reduced recursive estimators (MARS), agreement filters, and spike-aware resets (SPAM) materially change sample efficiency and robustness.
- Optimizer state is a statistical object with three design dimensions: support (which coordinates/blocks hold state), timescale (effective memory in tokens), and numerical representation (precision/quantizer). Changing batch size or unit-of-time without rescaling timescales changes the estimator.
- Memory, low-precision representations, and communication constraints materially alter optimizer rankings. A method that wins per token can lose in FLOPs, wall-clock, or when memory constraints force different batch/model choices.
- Evaluation needs multiple evidence tiers and budgets: scaled evidence (billion-parameter, multi-billion-token runs), controlled evidence (systematic sweeps/ablations at smaller scale), and emerging evidence (initial reports/preprints). Claims should specify which tier and which budget metric they address.
- Practical recommendations appearing in the survey: report EMA half-lives in tokens, report per-budget performance (tokens-to-target, FLOPs, wall time, memory), use fixed-memory evaluation frontiers, and respect parameter-class routing when benchmarking.
Data & Methods
- Scope: literature and component studies released Jan 2025–Aug 2026, with earlier precursors included where necessary. Emphasis on large-scale LM pretraining because it exposes trade-offs among convergence, memory, and systems.
- Evidence classification:
- Scaled evidence: billion-parameter models or multi-billion-token horizons (valuable for systems-level claims).
- Controlled evidence: smaller-scale but carefully ablated experiments designed to isolate components.
- Emerging evidence: early reports or limited replications; useful but provisional.
- Theoretical framing:
- Norm-based view (steepest descent under a chosen norm) clarifies methods like sign/Lion, Muon, and Scion that change update geometry without necessarily estimating curvature.
- Curvature/natural-gradient view for Fisher/Hessian surrogates (K-FAC, Sophia).
- Whitening/covariance perspective (Shampoo, SOAP) where transforms balance gradient covariances and act as variance-adaptation.
- Empirical methods referenced:
- Controlled ablations and component studies (to separate temporal vs geometric effects).
- Billion-parameter pretraining comparisons (to measure wall-clock, token-efficiency, and systems interactions).
- Memory-ledgers and quantization studies: blockwise dynamic quantization, differential codebooks for first/second moments, state-staleness analysis.
- Examples reported in the review: AdEMAMix (multi-timescale EMA; reported 1.3B model on 101B tokens matching an AdamW baseline trained on 197B tokens), MARS (variance-reduced recursive momentum), ADOPT (reordering normalization & accumulation), SPAM (spike-aware clipping + resets), Singularity-aware Adam (randomized directional probes).
- Metrics: tokens-to-target loss, gradient evaluations, FLOPs (including matrix decompositions), wall-clock (kernels, syncs, communications), memory (impact on batch/context/model size).
- Systems considerations: sharding, communication patterns, quantized state, master weights elimination, and how communication can itself be an optimizer operation (e.g., layerwise routing).
Implications for AI Economics
- Training cost is multi-dimensional: speedups claimed in tokens-to-target do not automatically translate to lower real-world costs (FLOPs, wall time, or cloud spend). Buyers and practitioners must demand multi-budget reporting before valuing optimizer-driven savings.
- Memory-efficient optimizers can change feasible model/batch/context choices, producing indirect economic effects larger than per-step gains. For infrastructure owners and cloud providers, optimizers that reduce memory can increase throughput (larger batches/longer contexts) and thus shift effective utilization and pricing dynamics.
- Engineering risk matters economically: AdamW’s predictability reduces operational and tuning costs. New optimizers that require heavy per-layer routing, tuning, or fragility under sharding/quantization impose hidden labor and time costs — reducing their net economic benefit unless they deliver robust, repeatable gains at scale.
- Hyperparameter transferability is an economic hidden cost. Methods that require extensive re-tuning per scale, batch size, or partition increase experiment budgets and slow iteration. Optimizers with more stable default behaviors lower experimentation costs.
- Quantization and low-precision optimizer states reduce memory and communication costs, enabling cheaper training (less DRAM, fewer interconnect costs). But optimizer choice affects later quantizability: some geometries are more tolerant to quantized states (e.g., Muon is unusually quantization-tolerant per the survey). This has direct cost implications for hardware selection and cloud instance choices.
- Market products and services:
- Optimizer-as-a-service or optimizer-tuned offerings could be monetizable if they reliably reduce end-to-end training cost for customers (not just tokens).
- Cloud providers and hardware vendors can gain differentiation by integrating memory-efficient, low-precision optimizer implementations that reduce effective resource usage.
- Investment and procurement decisions should require:
- Multi-metric benchmark evidence (tokens, FLOPs, wall-clock, memory) at relevant scales.
- Fixed-memory evaluation frontiers (to compare methods under realistic memory constraints).
- Sensitivity analyses for batch-size, schedule, and parameter partitioning.
- Policy for organizations:
- Adopt a compositional approach to optimizer adoption: route parameter classes to appropriate optimizer components (matrix methods for hidden dense matrices; AdamW for scalars/embeddings/heads as needed).
- Treat improvements as system-level: software, quantization, tuning and hardware choices jointly determine realized cost savings.
- Prioritize methods with reproducible scaled evidence and documented robustness under sharding and low-precision.
- Energy and carbon economics: any optimizer that reduces tokens-to-target or wall-clock time can reduce energy per trained model — but the net effect must account for any additional FLOPs or increased synchronization. Claims of reduced energy/carbon should therefore be tied to full-stack measurements.
Summary takeaway for economic decision-makers: evaluate optimizer innovations as system-and-budget policies, not as single-number algorithmic advances. Require multi-budget, scale-appropriate evidence and account for engineering/tuning risk and memory/quantization interactions when forecasting cost savings.
Assessment
Claims (10)
| Claim | Direction | Outcome | Confidence & Evidence | Details |
|---|---|---|---|---|
| Matrix-aware optimization methods are a real advance, but there is no context-free replacement for AdamW. Output Quality | mixed | Relative optimizer performance across training and systems evaluation conditions |
Reading fidelity
high
Study strength
medium
|
not reported
|
| Optimizer rankings can reverse depending on the resource budget and evaluation objective, including tokens, FLOPs, wall-clock time, and memory. Organizational Efficiency | mixed | Training efficiency under different computational and systems budgets |
Reading fidelity
high
Study strength
medium
|
not reported
|
| In the largest reported AdEMAMix comparison, a 1.3-billion-parameter model trained on 101 billion tokens matched the performance of an AdamW model trained on 197 billion tokens. Output Quality | positive | Validation loss or equivalent training performance at a given token budget |
Reading fidelity
high
Study strength
low
|
101B tokens versus 197B tokens
|
| The AdEMAMix result is evidence that using a single momentum timescale may be an avoidable restriction, rather than evidence of a generally portable twofold improvement. Organizational Efficiency | mixed | Training-data efficiency and generalizability of momentum-timescale improvements |
Reading fidelity
high
Study strength
medium
|
twofold
|
| ADOPT provides optimal convergence guarantees across a broad range of second-moment decay values, but controlled pretraining comparisons still find that empirical performance can depend on β2. Output Quality | mixed | Convergence guarantees and empirical pretraining performance as a function of β2 |
Reading fidelity
high
Study strength
medium
|
not reported
|
| Spike-aware clipping combined with periodic momentum resets is intended to mitigate the long-lasting effects of rare, unusually large gradient spikes. Error Rate | positive | Robustness of optimizer state and update behavior after gradient spikes |
Reading fidelity
high
Study strength
low
|
not reported
|
| Variance adaptation is empirically essential to the performance of whitening-related optimizer methods. Output Quality | positive | Optimizer training performance attributable to variance adaptation |
Reading fidelity
high
Study strength
low
|
not reported
|
| Holding β fixed while changing batch size changes the effective statistical estimator represented by an exponential moving average. Other | mixed | Effective temporal memory and gradient-history estimation |
Reading fidelity
high
Study strength
high
|
B/(1−β) tokens
|
| Optimizer rules designed for dense hidden-weight matrices do not automatically apply appropriately to vectors, embeddings, output heads, normalization parameters, or router matrices. Task Allocation | mixed | Suitability of optimizer geometry across parameter classes |
Reading fidelity
high
Study strength
medium
|
not reported
|
| A new optimizer must outperform AdamW's broader engineering advantages, not merely produce a better loss curve. Organizational Efficiency | positive | Practical deployability and systems reliability of optimizer implementations |
Reading fidelity
high
Study strength
medium
|
not reported
|