On this page
- Summary
- Why this question
- Scope and methods
- The landscape
- Theme 1 — The theory roots: local SGD was always about the communication tax
- Theme 2 — DiLoCo: the method that changed the operating point
- Theme 3 — Scaling behaviour: 4B, 10B, and the many-worker degradation problem
- Theme 4 — Unblocking the outer loop: streaming, eager updates, gossip, desync
- Theme 5 — It actually runs: multi-continent and internet-scale training
- Theme 6 — Geography is an energy story: curtailment, power-aware clusters, fiber
- Theme 7 — The checkpoint tax, quantified
- Theme 8 — The mitigation stack: every way to not do full checkpoint-restart
- Theme 9 — “Checkpointless training” as shipped: AWS HyperPod, torchft, and what the words mean
- Theme 10 — The combination: resilient DiLoCo as the frontier
- Where the evidence disagrees
- Gaps and open questions
- Confidence and limitations
- Evidence table
- References
Distributed low-communication training with DiLoCo and checkpointless training
How do DiLoCo-style distributed low-communication training and checkpointless training work, what do they deliver, and how do they combine?
https://reviews.lewiswon.me/reviews/distributed-diloco-checkpointless-training/ · Updated 6 Sept 2026
How this review was made
- Databases
- arXiv API, OpenAlex, Semantic Scholar, Google News RSS
- Queries (literal)
- all:"DiLoCo"
- all:"DiLoCo-XL"
- ti:"DiLoCo-XL"
- all:"checkpointless"
- all:"checkpoint-less" AND all:"training"
- all:"low-communication" AND all:"language model"
- all:"wide-area" AND all:"training" AND all:"language"
- all:"checkpoint-free" AND all:"training"
- all:"torchft"
- all:"Beyond A Single AI Cluster"
- ti:"local SGD"
- all:"local-SGD" AND all:"Adam"
- all:"checkpoint-free training" AND all:"large language model"
- ti:"checkpointing" AND all:"fault tolerance"
- all:"asynchronous checkpointing" AND all:"training"
- all:"memory-mapped" AND all:"optimizer state"
- ti:"erasure coding" AND all:"training"
- all:"checkpoint compression" AND all:"training"
- all:"elastic" AND all:"training" AND all:"language model"
- ti:"oobleck"
- ti:"bytecheckpoint"
- all:"checkpointing" AND all:"large language model"
- works?search=DiLoCo-XL (OpenAlex)
- citations of arXiv:2311.08105 (Semantic Scholar)
- "DiLoCo-XL" (Google News RSS)
- Search last run
- 2026-09-06
- Screening
- 46 sources used · 2018–2026 · standard review
Summary
The short version
Training frontier models assumes two things that are increasingly expensive: a single tightly-coupled cluster where every accelerator exchanges gradients every step, and a checkpoint file you can fall back to when something dies. This review covers the two research lines that relax those assumptions. The first — DiLoCo (Distributed Low-Communication) and its 2025–2026 descendants — cuts inter-worker communication by 100–500× so training can span data centers, continents, and even thousands of volunteer GPUs, with quality at parity. The second — checkpoint elimination — attacks the hours-long checkpoint-restart cycle; it is now a shipped AWS product (“checkpointless training” on SageMaker HyperPod), a Meta library (torchft), and a fast-moving academic stack of async, compressed, erasure-coded and hot-swapped state recovery. The deepest synthesis, Decoupled DiLoCo from Google DeepMind, absorbs failures by design so a training run never stalls globally. Confidence is moderate: the method papers are consistent, but frontier-scale evidence is thin, key numbers are vendor-stated, and the famous “10B across two continents” result circulates under a name (“DiLoCo-XL”) that no primary source uses.
Why this question
Two costs dominate the economics of very large model training. The first is the synchronization tax: data-parallel training all-reduces gradients every step, which is why accelerators must sit behind NVLink/InfiniBand in one building. That forces single-megacampus builds, long power-procurement cycles, and stranded capacity everywhere else. The second is the checkpoint tax: a 10,000-GPU run fails constantly — failures and stragglers are “the norm rather than the exception” in production experience 33 — and each recovery means writing and reloading terabytes of state, stalling every GPU for minutes to hours, and paying an energy bill for the privilege 43.
For anyone reasoning about where AI training can physically happen — one giant site versus many smaller ones, firm power versus renewable curtailment windows, owned clusters versus rented and preemptible ones — these two taxes are the whole game. If low-communication training removes the need for co-location, and checkpointless recovery removes the need for persistent-state safety nets, then training becomes schedulable across time and geography the way inference already is. This review asks what each line delivers, where the evidence stops, and whether the combination is real. It sits alongside this library’s reviews of interconnect economics, large-batch convergence, tokens-per-watt and model-to-grid datacenter design ([/reviews/llm-interconnects/], [/reviews/batch-size-convergence-llm/], [/reviews/tokens-per-watt-benchmarks/], [/reviews/model-to-grid-ai-datacenter-efficiency/], [/reviews/mlperf-training-closed-optimization/]).
Scope and methods
The question was split into three research waves run in parallel: (1) the DiLoCo academic lineage (original method, scaling behaviour, variants, local-SGD theory roots), (2) the checkpoint-elimination literature (literal “checkpointless” work, elastic/recovery systems, checkpoint-cost quantification), and (3) the 2025–2026 frontier (multi-datacenter training, production adoption, energy/geography economics, combinations of the two lines). Searches ran over the arXiv API, OpenAlex, Semantic Scholar citation graphs, and Google News RSS (literal strings in the frontmatter audit strip); industry material came from primary vendor pages fetched in-session. Screening: 321 unique arXiv records were pooled across the waves, 52 candidates were abs-page-verified (title, authors, date, abstract fetched directly), and 46 were included; the rest were dropped as redundant variants or peripheral. Every included record has a verified DOI (10.48550/arxiv.*, all resolve). Five load-bearing papers were read in full text; the rest are abstract-level, and claims are hedged accordingly. One term was searched exhaustively and found not to exist: no arXiv paper, OpenAlex record, news item, or official post titled “DiLoCo-XL” was locatable on 2026-09-06 — treated as a finding, not an error (see Gaps). The “checkpointless training” label likewise has zero academic footprint; the substance lives under other names and in one AWS product, covered via the two-layer model: citable papers for mechanisms, inline-linked vendor documents for product claims (all attributed vendor-stated).
The landscape
The literature splits cleanly into two bodies that barely cite each other until 2026. The DiLoCo line grows out of decades of local-SGD and federated-averaging theory 161718, became a method in late 2023 1, and exploded in 2025–2026 into a dense family: scaling studies 2, communication-overlap tricks 34, optimizer surgery 5148, desynchronized and gossip variants 91322, and — most importantly — an asynchronous, failure-tolerant redesign 7. A parallel community-driven line has actually shipped multi-continent and internet-scale runs 232426, recently surveyed as a field of its own 46.
The checkpoint body is older (HPC checkpoint-restart), but the LLM era reframed it: production systems reports quantify the failure regime 33, and a dense 2024–2026 crop of systems papers attacks checkpoint cost from every angle — lazy async 35, unified/reshardable formats 36, compression 44, erasure-coded replication 34, in-memory and hot-swap recovery 3839, checkpoint-free state migration 40, and preemptible-instance training 41. The two bodies finally meet in 2026: Meta’s torchft library supports DiLoCo-style training with in-memory state redundancy, AWS sells “checkpointless training” for ordinary synchronous workloads, and DeepMind’s Decoupled DiLoCo is explicitly framed as absorbing hardware failure without global stalls. That convergence is the story this review is organized around.
Theme 1 — The theory roots: local SGD was always about the communication tax
The mathematical core of DiLoCo is decades-old: run SGD locally on each worker and average occasionally. The first clean theory showed local SGD converges at the same rate as mini-batch SGD per gradient evaluated — the communication saving is almost free in the convex regime 16. Empirically, “post-local” SGD was shown to fix the generalization collapse of very large mini-batches at equal time-to-accuracy 17.
But the theory also drew the boundary lines that still shape the field. Local SGD strictly dominates minibatch SGD only in narrow (quadratic) regimes; for general convex objectives it can be strictly worse, and data heterogeneity is the killer 1819. A production-scale empirical study found local SGD’s accuracy loss grows with scale — the opposite of what small experiments suggested 20. Two consequences carried into the LLM era: naive periodic averaging is fragile, and the outer loop (how often you average and with what optimizer) matters as much as the local training. Later work on local SGD for LLMs found competitive results at equal compute and began mapping when multi-cluster training works 21, and a 2025 theory paper finally analysed the outer optimizer itself — learning rate, momentum, acceleration — as the lever that the earlier literature left unexamined 15.
Theme 2 — DiLoCo: the method that changed the operating point
DiLoCo reframed local SGD for the “islands of accelerators” setting: a small number of workers (initially 8), each itself a large cluster, synchronized rarely 1. The design is a variant of federated averaging with two crucial choices: the inner optimizer on each worker is AdamW, and the outer optimizer that consumes the averaged parameter differences (“pseudo-gradients”) is Nesterov momentum — not plain averaging. Workers exchange state once every 500 steps, so where standard data-parallel training communicates every few hundred milliseconds, DiLoCo communicates every few minutes. On C4 with 8 workers the paper reports matching fully synchronous quality while communicating 500× less, plus robustness to the data distribution of each worker 1.
The original authors explicitly predicted DiLoCo would look better at larger scale, because there is less interference during outer-gradient averaging. That prediction, unusually, was tested rather than asserted.
Theme 3 — Scaling behaviour: 4B, 10B, and the many-worker degradation problem
A 2025 scaling-law study did the careful thing: fixed compute budget, models from 35M to 10B parameters, and a search over replicas, hyperparameters and token budgets. It found DiLoCo scales predictably and robustly with model size; when well-tuned it scales better than data-parallel with size, tolerates larger batches, and can even win at small sizes. The headline validations were models of 4B and 10B parameters, where DiLoCo beat data-parallel as predicted while cutting total communication by more than 100× 2. This 10B result — not any separate “DiLoCo-XL” paper — is the verified anchor for the claim that low-communication training holds at the 10B frontier.
The same line of work exposed a real weakness: DiLoCo degrades as the number of workers K grows. The 2025–2026 literature is largely a series of attacks on that degradation from three directions. Inner optimizer: Muon as the inner optimizer produces more directionally correct pseudo-gradients than AdamW as K increases, improving DiLoCo exactly in the regime where it degrades 5. Aggregation: an explicit analogy between DiLoCo aggregation and model merging asks whether the rich merging literature (task vectors, etc.) can replace naive averaging when many workers sync after long local horizons 12. Outer optimizer: primal-averaging generalizations of Nesterov’s method unify single-worker DiLoCo with Schedule-Free-style averaging and reach targets in ~9–10% fewer steps than AdamW 6; and staleness-aware outer optimizers gate pseudo-gradients by age for asynchronous settings 8. The shared lesson: DiLoCo’s behaviour is governed by the pseudo-gradient quality into the outer loop, which is exactly what the local-SGD theory line said would matter 15.
Theme 4 — Unblocking the outer loop: streaming, eager updates, gossip, desync
Even at 100–500× less communication, a synchronous DiLoCo outer step still blocks: all workers stop local training, exchange, and wait for the straggler. A fast-moving 2025–2026 variant literature removes that stall in several complementary ways.
Streaming DiLoCo overlaps communication with computation by streaming partial parameter updates rather than exchanging one monolithic snapshot, and compresses the outer gradients to low precision — eliminating the peak-bandwidth spike of each sync 3. Eager updates let the shared (global) model advance optimistically while outer gradients are still in flight 4. Factored gossip splits the sync into a non-blocking mixing step that overlaps compute with no staleness, plus a blocking step that tightens agreement — a tunable dial between utilization and stability 13. GASLoC pushes the same idea to its logical end: gossip-based decentralized training that generalizes “communication acceleration” to the outer optimizer and works with adaptive optimizers and sparse randomized peer communication 22. NoLoCo removes even the residual all-reduce over model replicas that other low-communication methods keep 10. DES-LOC assigns different synchronization periods to parameters versus optimizer momenta — cutting communication 170× versus DDP and ~2× versus prior Local-Adam while keeping convergence guarantees and tolerating system failures 9. DeMo attacks the same wall from the optimizer side: decouple momentum, sparsify with a fast transform, reuse the momentum buffer as error feedback — up to 85× less data per GPU than AdamW on 300M–1B models 14. In asynchronous settings, staleness itself becomes the enemy: HeLoCo adds direction-aware corrections for stale pseudo-gradients, explicitly covering the non-IID data regime that asynchronous low-communication training had ignored 11.
The most radical unblocking is architectural: Decoupled DiLoCo abandons the shared-model lockstep entirely 7. Independent “learners” run local inner loops and communicate only their parameter fragments to a central synchronizer, which aggregates with a minimum quorum, an adaptive grace window, and dynamic token-weighted merging — so failed or straggling learners are simply excluded until they return (recovery pulls state from a peer). In chaos-engineering simulations over millions of chips with continuous failures, training maintains strictly zero global downtime while preserving quality on text and vision, dense and MoE 7. This is the paper where the two halves of this review start to be one subject.
Theme 5 — It actually runs: multi-continent and internet-scale training
The strongest evidence that low-communication training is not a lab curiosity comes from runs that happened outside data centers. OpenDiLoCo reimplemented DiLoCo open-source on the Hivemind peer-to-peer stack and trained across two continents and three countries at 90–95% compute utilization, with FP16 all-reduce of outer gradients costing nothing — and scaled to 3× the original work 23. INTELLECT-1 went further: the first 10B-parameter model trained collaboratively across the globe — 1 trillion tokens, up to 14 concurrent nodes on 3 continents, 30 independent compute providers joining and leaving, 83–96% compute utilization, and a 400× communication-bandwidth reduction versus data-parallel via its PRIME framework (ElasticDeviceMesh for dynamic process groups, live checkpoint-recovery kernels, hybrid DiLoCo-FSDP2) 24. INTELLECT-2 extended the paradigm to fully asynchronous reinforcement learning of a 32B reasoning model over a permissionless, heterogeneous swarm, adding verification of untrusted rollout workers and policy-weight broadcast 25.
Agora/Pluralis-8B is the current frontier of the community-driven line: an 8.6B model on 500B tokens trained over 40 days by ~330 contributor nodes — mostly consumer GPUs on ordinary internet connections — at ~170k tokens/s and 4.2 tokens per TFLOP, about 63% of a centralized H100 baseline’s efficiency, with no single party ever holding the full weights 26. On the organizational side, DiLoCoX targets >100B-parameter decentralized training with pipeline parallelism, a dual-optimizer policy, one-step-delay overlap and adaptive gradient compression 27; Atlas trains over WAN with workload-aware temporal bandwidth sharing and fills residual bubbles with prefill-as-a-service 28; HALoS uses hierarchical local-plus-global parameter servers to minimize inter-region traffic with convergence guarantees 29. The field now has its own survey, which categorizes exactly this split between community-driven and organizational approaches 46.
Theme 6 — Geography is an energy story: curtailment, power-aware clusters, fiber
For AI-factory economics the point of decoupling training from one site is not just resilience — it is electricity. A 2026 feasibility study trained a 561M-parameter model across geo-distributed clusters scheduled into renewable curtailment windows (times when grids waste clean power), elastically switching between local single-site training and federated multi-site synchronization as sites appear and disappear; preliminary results show operational emissions dropping to 5–12% of single-site baselines at preserved quality 30. PowerScale generalizes the insight: form training clusters by both network proximity and power availability, and a 100-site simulation matches time-to-accuracy while cutting energy up to 3.9× versus single-tier WAN aggregation — whose synchronization barriers idle faster sites and whose full-WAN updates dominate energy 31. Even the fiber matters: discrete-event simulation puts the optimum distance between two AI clusters at 10–100 km, where hollow-core fiber buys ~25% more compute-communication overlap 32. None of these are deployed-fleet results — all are simulations or small prototypes — but they are the only quantitative bridge from “DiLoCo works” to “training can follow cheap, clean, stranded power,” which is the version of this literature that matters for datacenter siting decisions.
Theme 7 — The checkpoint tax, quantified
The case for checkpointless recovery rests on how bad checkpoint-restart is at scale. The most cited evidence is operational: at 10,000+ GPUs, failures and stragglers are normal, and MegaScale’s production system treats fast checkpointing and recovery as a first-class co-design problem — the bar being to catch up within ~15 minutes and hold ≥90% effective training time 33. Measurement studies add texture: checkpoint-restart costs differ dramatically across frameworks, and naive checkpointing exposes serious I/O bottlenecks 42; the operations themselves consume measurable energy, modulated by processor power states and problem size 43; and checkpoint storage has grown so large that lossy compression with training-time-adaptive sensitivity — delta-encoding consecutive checkpoints — is considered acceptable 44. Hardware reality amplifies all of it: the companion review of GPU memory error rates in this library documents the bursty, cluster-to-cluster variability that makes failures hard to predict ([/reviews/ecc-memory-errors/]). The frequency-vs-cost dilemma is the crux: checkpoint rarely and a failure rolls back hours; checkpoint often and the I/O tax eats the run. Every system in the next theme is a different answer to that dilemma.
Theme 8 — The mitigation stack: every way to not do full checkpoint-restart
The academic response to the checkpoint tax is a spectrum of mechanisms, none of which (until very recently) called itself “checkpointless”:
Cheaper persistence. DataStates-LLM decouples training state from the process with lazy, asynchronous checkpointing over composable state providers, cutting the I/O cost of frequent saves 35; ByteCheckpoint unifies save/load and — critically — resharding across parallelism configurations, so a checkpoint is usable by the next job, not just the one that wrote it 36.
Faster detection and recovery. FlashRecovery adds continuous active failure detection (seconds-scale) feeding fast low-cost recovery 37. FFTrainer leverages surplus network capacity to save and load state so frequently that rollback nearly disappears — up to 98% recovery-time reduction and 68% less GPU-utilization loss versus prior checkpointing 38. PHOENIX hot-swaps failed nodes with spares along a zero-overhead checkpoint path, attacking the steady-state-overhead versus recovery-latency Pareto frontier directly 39.
No checkpoint at all for reconfiguration. ETC migrates model state directly between device sets when elasticity (preemption, scaling) changes the parallel configuration — explicitly checkpoint-free, exploiting state locality instead of persisting and reloading everything 40. Bamboo showed earlier that even the extreme failure model of cheap preemptible instances can be trained through, via partial re-training and redundancy 41.
Replicated state instead of saved state. Oobleck instantiates f+1 logically equivalent pipeline replicas so any f simultaneous failures recover from already-replicated in-memory state — no checkpoint-restart, no resource idling — with a formal guarantee that surviving templates cover all resources 34. This “keep a live copy of the state somewhere else” idea is the direct ancestor of both torchft and AWS checkpointless training.
The production frameworks ship these as integrated stacks: TorchTitan (Meta’s PyTorch-native pretraining system) integrates asynchronous checkpointing and fault-tolerant HSDP as named components 45.
Theme 9 — “Checkpointless training” as shipped: AWS HyperPod, torchft, and what the words mean
In December 2025 the term entered product vocabulary: AWS announced checkpointless training on SageMaker HyperPod, alongside elastic training (AWS News Blog, 2025-12-03 — vendor-stated). The launch post describes it as eliminating “disruptive checkpoint-restart cycles, maintaining forward training momentum despite failures, reducing recovery time from hours to minutes,” built from four components: collective-communication initialization optimizations, memory-mapped data loading with caching, in-process recovery, and checkpointless peer-to-peer state replication, orchestrated by the HyperPod training operator. AWS states that Nova models were trained with this technology on tens of thousands of accelerators, and that internal studies across 16-to-2,000+ GPU clusters measured downtime reductions over 80% versus checkpoint-based recovery — figures from internal studies that cannot be independently verified (launch post, docs, recipes incl. GPT-OSS 120B fine-tune). The mechanism — redundant model state held in GPU memory across peers, recovered in-process without restart — is the replicated-state idea from Oobleck 34 and from Meta’s torchft library, which implements fault tolerance for HSDP/DDP/LocalSGD and DiLoCo (marked experimental) with “live checkpoint recovery from a healthy” replica (torchft GitHub; repo-documented, no paper or DOI exists).
Two framing points matter. First, “checkpointless” here means no checkpoint-restart on failure — it does not mean no checkpoints anywhere: evaluation, experiments, and stage transitions still need saved states, and AWS’s own stack saves optimizer state for elasticity. Second, none of the shipped systems are DiLoCo: AWS checkpointless training targets ordinary synchronous HSDP workloads, and torchft’s DiLoCo support is the only shipped bridge between the two lines — which is why the research-side combination below matters.
Theme 10 — The combination: resilient DiLoCo as the frontier
The two lines combine most completely in Decoupled DiLoCo 7, whose design reads like a checklist of both literatures: low-communication DiLoCo inner/outer structure (500×-class bandwidth reduction), decoupled momentum-style optimization 14, asynchronous staleness management that later work refines with age-aware outer optimizers 8, quorum-based aggregation that simply outlasts failed learners, peer-to-peer state recovery on rejoin (the torchft/Oobleck move), and — tellingly — internal Chandy-Lamport distributed snapshots plus deterministic-replay logging for state coordination, i.e. checkpoints as a coordination primitive rather than a recovery primitive. Google DeepMind’s own framing of the work is explicitly about resilience at scale (Decoupled DiLoCo blog, 2026-04-23).
The pattern across INTELLECT-1 24, Agora 26, and Decoupled DiLoCo 7 is that churn is no longer an exception to engineer around but the design condition: training proceeds through nodes leaving, failing, or being scavenged, and quality holds. This is exactly the property a checkpointless regime needs, because when failures stop stalling the run, the rate of checkpointing becomes a choice about experiments and reproducibility rather than survival. What is missing is a shipped, at-scale system that is simultaneously low-communication and checkpointless for ordinary (non-research) workloads — torchft is experimental, AWS’s product is synchronous-only, and the research systems run in simulation or at community scale.
Where the evidence disagrees
Local SGD theory vs. DiLoCo practice. The theory line says local SGD does not reliably beat minibatch SGD and heterogeneity hurts 1819, and a production-scale study found accuracy losses that grow with scale 20. DiLoCo’s results 12 sit in apparent contradiction. The resolution in the literature is that DiLoCo is not naive local SGD: the outer optimizer (Nesterov momentum over pseudo-gradients, later analysed directly 15) changes the regime, and heterogeneity is controlled because each worker trains on large IID-ish shards rather than federated edge data. The disagreement is best read as “the naive algorithm underperforms; the two-loop design is what rescues it” — but the burden of proof for very large K still sits with the DiLoCo camp 512.
Synchronous vs. asynchronous. The synchronous DiLoCo papers emphasize predictable convergence; the async camp argues blocking is the real tax 74, while staleness critics note async updates can be misaligned with the global direction — especially non-IID 11 — and propose gating 8. No head-to-head at equal scale settles it.
Vendor claims vs. independent evidence. AWS’s >80% downtime reduction and “Nova on tens of thousands of accelerators” are internal-study claims [AWS launch post]; INTELLECT-1’s quality claim (“comparable performance”) is a single community run 24; Agora’s 63% efficiency is one run 26. These are consistent with the academic results but not yet independently reproduced at scale.
Naming. The “DiLoCo-XL” label, widely used in discussion for a 10B/two-continent result, matches no primary source; the verified 10B anchors are the scaling-law validation 2 and INTELLECT-1 24. Reviewers and engineers repeating “DiLoCo-XL” should say which result they mean.
Gaps and open questions
- “Checkpointless” has no academic identity. Zero arXiv records use the term; the science is scattered across async checkpointing, replicated-state recovery, state migration and erasure coding. A survey or systems paper that names and bounds the design space (what must still be persisted, when, and why) would materially help.
- Frontier-scale low-communication training is untested. All verified DiLoCo-scale evidence stops at 10B (scaling-law validation and INTELLECT-1). Nothing public shows 100B+ or trillion-token low-communication training, which is where the scaling-law extrapolations 2 point but do not prove.
- Decoupled DiLoCo’s zero-downtime claim is simulation-based (“millions of simulated chips”); real multi-site chaos deployments are the missing confirmation 7.
- Energy results are simulation-scale (curtailment feasibility on a 561M prototype 30; PowerScale in a 100-site simulator 31). No published measurement of a real multi-site training run’s energy ledger exists.
- Checkpointless determinism: if training restarts from replicated state rather than a canonical checkpoint, what happens to reproducibility, experiment branching, and eval provenance? The Decoupled DiLoCo answer (snapshots as coordination state) is partial 7.
- Elastic + checkpointless + low-communication as one shipped stack (the torchft DiLoCo path [torchft GitHub] crossed with AWS-style peer-to-peer recovery) is the obvious product-shaped gap.
Confidence and limitations
Confidence is moderate overall. The mechanism-level claims (DiLoCo cuts communication by 100–500× at parity in the tested regimes; recovery without full checkpoint-restart is feasible and shipped) are well-supported by consistent, fetched primary sources, several read in full text. Confidence is lower for: frontier-scale extrapolation (10B is the verified ceiling), all vendor/internal-study numbers (AWS, and to a lesser degree community-run self-reports), and anything energy-related (simulation-based). Limitations of this review: five papers were read in full; the rest rest on fetched abstracts, so fine-grained claims from bodies may be missed; industry material (AWS, torchft, DeepMind blog) is vendor-documented and flagged as such; two of three delegated research waves timed out mid-run and were reconstructed from their partial files and this session’s own verification fetches; and the field is moving quickly enough that 2026 papers appearing after 2026-09-06 will not be reflected. Searches were in English; venues were arXiv-first, which is where this literature lives.
Evidence table
| key | year | design | sample | measure | finding | limitations | confidence |
|---|---|---|---|---|---|---|---|
| douillard2023diloco | 2023 | method paper with empirical eval | 8 workers on C4 at moderate LLM scale | loss vs fully synchronous baseline; communication volume | Inner AdamW + outer Nesterov momentum; workers exchange every 500 steps and match synchronous quality while communicating 500x less | tested at moderate scale; authors flag larger-scale extrapolation as open | high |
| charles2025dilocoscaling | 2025 | scaling-law study | models from 35M to 10B parameters under fixed compute budget | eval loss; batch-size tolerance; communication volume | DiLoCo scales predictably and robustly with model size and can beat data-parallel when well tuned; predictions validated at 4B/10B with >100x communication reduction | large-model hyperparameters chosen via predicted laws rather than sweeps | high |
| douillard2025streaming | 2025 | method paper | LLM training runs across distributed workers | eval loss; compute utilization; peak bandwidth | Streaming partial updates overlap outer communication with local compute; low-precision outer gradients cut bandwidth and remove the peak-bandwidth spike of DiLoCo sync | overlap gains depend on topology and scales tested | medium |
| kale2025eager | 2025 | method paper | DiLoCo at datacenter-worker scale | wall-clock time and utilization | Eager updates let the shared model advance while outer gradients are in flight, reducing blocking at each outer step | analysis limited to specific delay regimes | medium |
| therien2025muloco | 2025 | method paper | LLM DiLoCo runs with varying worker count K | loss; pseudo-gradient direction quality | Muon as inner optimizer yields more directionally correct pseudo-gradients than AdamW as K grows, improving DiLoCo exactly where AdamW-based DiLoCo degrades | Muon-specific findings; bounded evaluation scope | medium |
| defazio2025primalaveraging | 2025 | method paper | single-worker DiLoCo and Schedule-Free comparisons | steps to target loss | GPA generalizes Nesterov-style averaging with exponential moving average; ~8.7-10.1% fewer steps to target than AdamW with lower memory overhead | non-distributed framing; link to multi-worker DiLoCo indirect | medium |
| douillard2026decoupled | 2026 | systems paper with chaos simulation | simulated failure environments with millions of chips; text and vision; dense and MoE | goodput; downtime; final quality | Decoupled DiLoCo: independent learners aggregated by a central syncer (minimum quorum, adaptive grace window, token-weighted merging); strictly zero global downtime in chaos experiments while preserving quality | failure model is simulated at scale; real multi-site deployment evidence pending | high |
| shah2026cgad | 2026 | method paper | decoupled/asynchronous DiLoCo under controlled delays | loss robustness under staleness | CGAD gates incoming pseudo-gradients by age (exponential decay times cosine cutoff) before Adam moments; drop-in two-hyperparameter design that stabilizes stale updates | new method; independent replication lacking | low |
| iacob2025desloc | 2025 | method paper | language models up to 1.7B parameters | communication volume; convergence | DES-LOC assigns independent synchronization periods to parameters vs momenta; communicates 170x less than DDP and ~2x less than prior Local Adam while converging; targets failure-prone settings | scale ceiling 1.7B | medium |
| kolehmainen2025noloco | 2025 | method paper | large models over low-bandwidth networks | loss; communication cost | NoLoCo removes the explicit full-model synchronization step that earlier low-communication methods still perform | early-stage evidence; independent validation outstanding | medium |
| asif2026heloco | 2026 | method paper | heterogeneous devices with non-IID data | convergence; update alignment | HeLoCo adds direction-aware correction for stale pseudo-gradients in asynchronous low-communication training, covering the non-IID regime prior work ignored | single evaluation; heterogeneity axis only | medium |
| horoi2026merging | 2026 | empirical study | DiLoCo runs with many workers and long local horizons | degradation relative to FLOP-matched data-parallel | Draws an explicit analogy between DiLoCo aggregation and model merging; tests merging-based aggregation to recover quality lost as worker count and local steps grow | preprint; results preliminary | medium |
| koneputugodage2026gossip | 2026 | method paper | billion-parameter LMs over low-bandwidth links | compute utilization vs optimization stability | Factorized outer sync into non-blocking gossip mixing (no staleness) plus a blocking tightening step; tunable utilization/stability trade-off | specific bandwidth and failure regimes evaluated | medium |
| peng2024demo | 2024 | method paper | 300M and 1B parameter DeMo LMs | per-step bytes per GPU | DeMo decouples momentum, applies fast orthonormal transform + top-k sparsification, and reuses momentum as error feedback; up to 85x less data per GPU than AdamW | moderate model scales; systems overhead not central | medium |
| khaled2025outer | 2025 | theory | local SGD analysis | convergence theory for outer-optimizer choices | Characterizes how the outer optimizer's learning rate, momentum and acceleration govern local SGD; grounds the DiLoCo two-loop design | theory for simplified settings | medium |
| stich2018localsgd | 2018 | theory | convex optimization analysis | gradient complexity vs communication | Proves local SGD converges at the same rate as mini-batch SGD in gradient evaluations while communicating less | convex objectives only | high |
| lin2018postlocal | 2018 | empirical study with theory | large-batch image classification benchmarks | generalization; time-to-accuracy | Post-local SGD recovers generalization lost by large mini-batches at equal efficiency; maps the communication-vs-performance trade-offs of local SGD variants | vision-scale workloads; pre-LLM | high |
| woodworth2020localsgd | 2020 | theory | convex and quadratic objectives | worst-case error guarantees | Local SGD strictly dominates minibatch SGD only for quadratics; for general convex objectives there is no consistent dominance and heterogeneity can make it worse | convex theory; does not capture deep-learning regime | high |
| khaled2019tighter | 2019 | theory | convex; identical vs heterogeneous data | convergence rates | Provides tighter local SGD bounds for both data regimes and quantifies the severe effect of data heterogeneity on performance | convex analysis | high |
| ortiz2021tradeoffs | 2021 | empirical study | large-scale image classification (production-scale GPUs) | accuracy vs communication cost | At scale, local SGD trades accuracy for lower communication - contradicting smaller-scale studies; earlier optimism does not transfer | vision only; pre-LLM training regimes | high |
| he2024localsgdscaling | 2024 | empirical study | LLM training incl. multi-cluster and edge setups | loss parity vs conventional methods | Local SGD achieves competitive LLM results at equal compute in tested settings; identifies necessary conditions for effective multi-cluster training | modest model scales; limited extrapolation | medium |
| cagnasso2026gasloc | 2026 | method paper | LLM pretraining over heterogeneous links | loss; communication cost | GASLoC generalizes communication acceleration to the outer optimizer in a gossip-based decentralized framework compatible with adaptive optimizers and sparse randomized peer communication | recent preprint; narrow evaluation | medium |
| jaghouar2024opendiloco | 2024 | replication + open-source framework | 1B-scale training across two continents and three countries | compute utilization; gradient precision | Open-source DiLoCo replication on Hivemind holds 90-95% compute utilization; FP16 all-reduce of outer gradients costs no quality; scales to 3x the original work | community infrastructure; single replication setting | high |
| jaghouar2024intellect1 | 2024 | production technical report | 10B model; 1T tokens; up to 14 nodes across 3 continents; 30 independent providers | compute utilization; final quality | INTELLECT-1 is the first 10B model trained collaboratively across the globe: 83-96% compute utilization, 36.2-41.4% MFU, 400x communication-bandwidth reduction via PRIME + DiLoCo + int8 all-reduce | single run; churn handled by design but quality comparison is single-shot | high |
| primeintellect2025intellect2 | 2025 | production technical report | 32B reasoning model; fully asynchronous RL over permissionless swarm | reasoning performance; infrastructure verification | First globally distributed RL run of a 32B model; PRIME-RL with TOPLOC (verifying untrusted rollouts) and SHARDCAST (policy-weight broadcast) make async decentralized RL feasible | RL rather than pretraining; trust/security overheads | medium |
| avraham2026agora | 2026 | systems paper | 330 contributor nodes, mostly consumer GPUs, over 40 days on internet links | tokens/s; tokens per TFLOP | Agora sustains ~170k tokens/s at 4.2 tokens/TFLOP - 63% of a centralized H100 baseline - while nodes join and leave throughout | efficiency gap vs datacenter remains; below frontier scale | medium |
| qi2025dilocox | 2025 | framework paper | decentralized clusters targeting >100B-parameter models | training speed; achievable scale | DiLoCoX combines pipeline parallelism with a dual-optimizer policy, one-step-delay overlap of communication and local training, and adaptive gradient compression | claimed >100B capability not demonstrated at that size | medium |
| palak2024atlas | 2024 | systems paper | geo-distributed LM training over WAN | training time; GPU utilization | Atlas speeds geo-distributed training via workload-aware temporal bandwidth sharing; BubbleTea runs prefill-as-a-service inside residual bubbles to raise utilization | assumes dedicated WAN links between DCs | medium |
| kim2025halos | 2025 | method paper | geo-distributed heterogeneous accelerators | convergence; inter-region communication volume | HALoS uses local parameter servers per region plus a global server, minimizing expensive inter-region communication with convergence guarantees | region-topology assumptions; validation scale | medium |
| wiesner2026curtailment | 2026 | feasibility study / prototype | 561M-parameter prototype trained over simulated curtailment windows | operational emissions; training quality | Curtailment-aligned training cuts operational emissions to 5-12% of single-site baselines; the system elastically switches between local single-site and federated multi-site modes | small prototype; energy figures partly simulated | medium |
| mehboob2026powerscale | 2026 | simulation study | 100-site Flower-based simulation | energy consumption; time-to-accuracy | PowerScale clusters sites by network proximity AND power availability; matches or improves time-to-accuracy while cutting energy up to 3.9x vs single-tier aggregation | simulation only | medium |
| papavasileiou2026fiber | 2026 | simulation study | geo-distributed data-parallel training over fiber links | compute-communication overlap | Optimum inter-cluster distance is 10-100km; hollow-core fiber enables ~25% higher compute-communication overlap at those distances | discrete-event simulation; data-parallel framing only | medium |
| jiang2024megascale | 2024 | production systems report | >10,000-GPU LLM training cluster | effective training time; stability | Failures and stragglers are the norm at scale; co-designed fast checkpointing and recovery catch up within ~15 minutes and hold >=90% effective training time | experience report from one organization | high |
| jang2023oobleck | 2023 | systems paper | billion-parameter models with pipeline parallelism | fault-tolerance guarantee; throughput under failures | Oobleck instantiates f+1 logically equivalent pipeline replicas so any f failures recover from already-replicated state - no full checkpoint-restart and no resource idling | replication overhead; pipeline-parallel orientation | medium |
| maurya2024datastates | 2024 | systems paper | LLM training on HPC infrastructure | checkpoint I/O overhead | DataStates-LLM decouples state from the training process with lazy asynchronous checkpointing over composable state providers, cutting the I/O cost of frequent checkpointing | focus on I/O; end-to-end recovery not central | medium |
| wan2024bytecheckpoint | 2024 | systems paper | large foundation-model development at ByteDance | checkpoint time; resharding cost | ByteCheckpoint unifies checkpoint save/load and parallelism resharding across frameworks and storage backends for the full model lifecycle | production details org-specific | medium |
| zhang2025flashrecovery | 2025 | systems paper | large-scale LLM clusters | failure-detection latency; recovery time and cost | FlashRecovery adds continuous active failure detection (seconds-scale) plus fast low-cost recovery modules | recent; no large independent deployment evidence yet | medium |
| zhao2025fftrainer | 2025 | systems paper | LLM training clusters | recovery time; GPU utilization loss | FFTrainer leverages surplus network capacity for frequent near-free state save/load; up to 98% recovery-time reduction and 68% less GPU-utilization loss vs prior checkpointing | depends on spare network capacity | medium |
| xie2026phoenix | 2026 | systems paper | multi-thousand-GPU, months-long training | steady-state overhead; recovery latency | PHOENIX hot-swaps failed nodes with spares via a zero-overhead checkpoint path, avoiding both steady-state overhead and long recovery | requires spare-node pool; recent preprint | medium |
| liu2026statemigration | 2026 | systems paper | elastic hybrid-parallel LLM training | state-migration latency under preemption and scaling | ETC migrates model state directly between device sets (checkpoint-free), exploiting state locality instead of persisting and reloading complete state | elasticity scenarios only | medium |
| thorpe2022bamboo | 2022 | systems paper | preemptible cloud instances for large-DNN training | training cost; resilience to frequent preemption | Bamboo makes preemptible-instance training practical through partial re-training and redundancy designed for the frequent-preemption failure model | pre-LLM scale; not low-communication | medium |
| rojas2020checkpointstudy | 2020 | measurement study | Chainer/PyTorch/TensorFlow on HPC | checkpointing cost; file size; determinism | Framework checkpoint mechanisms differ markedly; identifies I/O bottlenecks and determinism gaps in checkpoint-restart practice | older framework versions; HPC context | medium |
| moran2024ckptenergy | 2024 | measurement study | homogeneous cluster, SPMD applications | energy consumption of checkpoint and restart | Characterizes how processor P/C states, problem size and checkpoint software drive the energy cost of checkpoint-restart operations | node-level energy only | medium |
| agrawal2023inshrinkerator | 2023 | systems paper | DL training checkpoints | compression ratio; accuracy retention | Weight sensitivity to quantization varies during training; dynamic per-weight quantization plus delta compression shrinks checkpoint storage and bandwidth with bounded quality loss | lossy; quality trade-off must be managed | medium |
| liang2024torchtitan | 2024 | framework paper | thousands of accelerators; production LLM pretraining | usability; feature integration | TorchTitan unifies PyTorch-native training techniques (including async checkpointing and fault-tolerant HSDP) in one composable system | framework paper; org-specific performance claims | medium |
| dong2025decentralizedsurvey | 2025 | survey | decentralized LLM training literature | field taxonomy; case coverage | First comprehensive survey framing decentralized training as resource-driven; categorizes community-driven vs organizational approaches and situates DiLoCo-family work | field is young; taxonomy will age quickly | high |
Swipe sideways to see all columns.
References
- (2023). DiLoCo: Distributed Low-Communication Training of Language Models — arXiv preprint. Full text read. Original DiLoCo: 8 workers sync every 500 steps, inner AdamW + outer Nesterov momentum, 500x communication reduction at parity on C4doi:10.48550/arxiv.2311.08105
- (2025). Communication-Efficient Language Model Training Scales Reliably and Robustly: Scaling Laws for DiLoCo — arXiv preprint. Full text read. Scaling-law study of DiLoCo: predictable/robust scaling; validated at 4B and 10B parameters with >100x communication reduction vs data-paralleldoi:10.48550/arxiv.2503.09799
- (2025). Streaming DiLoCo with overlapping communication: Towards a Distributed Free Lunch — arXiv preprint. Full text read. Streaming DiLoCo: overlapping communication with computation via streaming partial updates and low-precision outer gradientsdoi:10.48550/arxiv.2501.18512
- (2025). Eager Updates For Overlapped Communication and Computation in DiLoCo — arXiv preprint. Abstract only. Eager (non-blocking) updates of shared parameters to hide outer-step communication behind local computedoi:10.48550/arxiv.2502.12996
- (2025). MuLoCo: Muon is a practical inner optimizer for DiLoCo — arXiv preprint. Abstract only. MuLoCo: Muon as inner optimizer yields more directionally correct pseudo-gradients than AdamW as DiLoCo worker count growsdoi:10.48550/arxiv.2505.23725
- (2025). Smoothing DiLoCo with Primal Averaging for Faster Training of LLMs — arXiv preprint. Abstract only. Generalized Primal Averaging: unifies single-worker DiLoCo and Schedule-Free; ~9-10% fewer steps to target lossdoi:10.48550/arxiv.2512.17131
- (2026). Decoupled DiLoCo for Resilient Distributed Pre-training — arXiv preprint. Full text read. Decoupled DiLoCo: independent learners + central syncer (quorum, grace window, token-weighted merging); zero global downtime in chaos simulations of millions of chipsdoi:10.48550/arxiv.2604.21428
- (2026). Cosine-Gated Adam-Decay: Drop-In Staleness-Aware Outer Optimization for Decoupled DiLoCo — arXiv preprint. Abstract only. CGAD: staleness-aware drop-in outer optimizer for asynchronous/decoupled DiLoCo, gating stale pseudo-gradients by agedoi:10.48550/arxiv.2605.09126
- (2025). DES-LOC: Desynced Low Communication Adaptive Optimizers for Training Foundation Models — arXiv preprint. Abstract only. DES-LOC: desynchronised parameter/momentum sync periods; 170x less communication than DDP on models up to 1.7B, failure-tolerantdoi:10.48550/arxiv.2505.22549
- (2025). NoLoCo: No-all-reduce Low Communication Training Method for Large Models — arXiv preprint. Abstract only. NoLoCo: removes the explicit all-parameter synchronization step used by prior low-communication methodsdoi:10.48550/arxiv.2506.10911
- (2026). HeLoCo: Efficient asynchronous low-communication training under data and device heterogeneity — arXiv preprint. Abstract only. HeLoCo: direction-aware correction for stale pseudo-gradients in asynchronous low-communication training under non-IID datadoi:10.48550/arxiv.2606.00271
- (2026). Can Model Merging Improve Aggregation in DiLoCo? — arXiv preprint. Abstract only. Asks whether model-merging techniques can replace naive averaging in DiLoCo aggregation as worker count growsdoi:10.48550/arxiv.2607.03011
- (2026). Factored Gossip DiLoCo: Reducing Blocking Communication in DiLoCo — arXiv preprint. Abstract only. Factored Gossip DiLoCo: splits outer sync into non-blocking mixing plus tightening step, tunable utilization/stability trade-offdoi:10.48550/arxiv.2606.22768
- (2024). DeMo: Decoupled Momentum Optimization — arXiv preprint. Abstract only. DeMo: decoupled momentum + top-k sparsification + error feedback; up to 85x less per-GPU communication on 300M-1B modelsdoi:10.48550/arxiv.2411.19870
- (2025). Understanding Outer Optimizers in Local SGD: Learning Rates, Momentum, and Acceleration — arXiv preprint. Abstract only. Theory of the outer optimizer in local SGD: role of its learning rate, momentum and accelerationdoi:10.48550/arxiv.2509.10439
- (2018). Local SGD Converges Fast and Communicates Little — arXiv preprint. Abstract only. First concise convergence proof that local SGD matches mini-batch SGD rate while communicating lessdoi:10.48550/arxiv.1805.09767
- (2018). Don't Use Large Mini-Batches, Use Local SGD — arXiv preprint. Abstract only. Post-local SGD: local updates between syncs fix large-batch generalization drop at equal time-to-accuracydoi:10.48550/arxiv.1808.07217
- (2020). Is Local SGD Better than Minibatch SGD? — arXiv preprint. Abstract only. Theory showing local SGD dominates minibatch SGD only in narrow regimes; heterogeneity can make it worsedoi:10.48550/arxiv.2002.07839
- (2019). Tighter Theory for Local SGD on Identical and Heterogeneous Data — arXiv preprint. Abstract only. Tighter local SGD bounds for identical vs heterogeneous data; quantifies heterogeneity damagedoi:10.48550/arxiv.1909.04746
- (2021). Trade-offs of Local SGD at Scale: An Empirical Study — arXiv preprint. Abstract only. Large-scale vision study: local SGD trades accuracy for communication savings, contradicting small-scale optimismdoi:10.48550/arxiv.2110.08133
- (2024). Exploring Scaling Laws for Local SGD in Large Language Model Training — arXiv preprint. Abstract only. Scaling-law experiments for local SGD in LLM training incl. multi-cluster and edge settingsdoi:10.48550/arxiv.2409.13198
- (2026). Unifying Local Communications and Local Updates for LLM Pretraining — arXiv preprint. Abstract only. GASLoC: gossip-based decentralized pretraining generalising communication acceleration to the outer optimizerdoi:10.48550/arxiv.2606.11081
- (2024). OpenDiLoCo: An Open-Source Framework for Globally Distributed Low-Communication Training — arXiv preprint. Abstract only. Open-source DiLoCo replication (Hivemind); two continents, three countries, 90-95% utilization; FP16 all-reduce safedoi:10.48550/arxiv.2407.07852
- (2024). INTELLECT-1 Technical Report — arXiv preprint. Abstract only. INTELLECT-1: first 10B model trained across the globe - 1T tokens, up to 14 nodes, 3 continents, 30 dynamic providers, 400x bandwidth cutdoi:10.48550/arxiv.2412.01152
- (2025). INTELLECT-2: A Reasoning Model Trained Through Globally Decentralized Reinforcement Learning — arXiv preprint. Abstract only. INTELLECT-2: first globally distributed async RL training of a 32B model over permissionless contributorsdoi:10.48550/arxiv.2505.07291
- (2026). Agora: Collective and Permissionless Internet-Scale Pretraining of Large Language Models — arXiv preprint. Abstract only. Agora: internet-scale pretraining over 330 consumer-GPU nodes, 63% of centralized H100 efficiency at ~170k tokens/sdoi:10.48550/arxiv.2607.13332
- (2025). DiLoCoX: A Low-Communication Large-Scale Training Framework for Decentralized Cluster — arXiv preprint. Abstract only. DiLoCoX: pipeline parallelism + dual-optimizer policy + one-step-delay overlap + adaptive gradient compression for >100B-scale decentralized clustersdoi:10.48550/arxiv.2506.21263
- (2024). Improving training time and GPU utilization in geo-distributed language model training — arXiv preprint. Abstract only. Atlas: geo-distributed LM training over WAN with workload-aware bandwidth sharing; BubbleTea fills bubbles with prefilldoi:10.48550/arxiv.2411.14458
- (2025). HALoS: Hierarchical Asynchronous Local SGD over Slow Networks for Geo-Distributed Large Language Model Training — arXiv preprint. Abstract only. HALoS: hierarchical async local SGD with local+global parameter servers for slow geo-distributed networksdoi:10.48550/arxiv.2506.04531
- (2026). Distributed LLM Pretraining During Renewable Curtailment Windows: A Feasibility Study — arXiv preprint. Abstract only. Feasibility study: LLM pretraining inside renewable curtailment windows, elastic local/federated switching, emissions cut to 5-12% of baselinedoi:10.48550/arxiv.2602.22760
- (2026). PowerScale: Energy-Efficient Geo-Distributed Model Training with Federated Datacenter Power — arXiv preprint. Abstract only. PowerScale: power-aware geo-distributed training clusters cutting energy up to 3.9x in 100-site simulationdoi:10.48550/arxiv.2607.25650
- (2026). Modeling the Impact of Fiber Latency on Compute-Communication Overlap in Geo-Distributed Multi-Datacenter AI Training — arXiv preprint. Abstract only. Simulation of fiber latency vs overlap: optimum inter-cluster distance 10-100km; hollow-core fiber +25% overlapdoi:10.48550/arxiv.2605.19169
- (2024). MegaScale: Scaling Large Language Model Training to More Than 10,000 GPUs — arXiv preprint. Full text read. MegaScale: 10,000+ GPU production training; failures/stragglers are the norm; fast checkpointing keeps >=90% effective training timedoi:10.48550/arxiv.2402.15627
- (2023). Oobleck: Resilient Distributed Training of Large Models Using Pipeline Templates — arXiv preprint. Abstract only. Oobleck: f+1 pipeline replicas recover from any f failures from already-replicated state, avoiding full checkpoint-restartdoi:10.48550/arxiv.2309.08125
- (2024). DataStates-LLM: Lazy Asynchronous Checkpointing for Large Language Models — arXiv preprint. Abstract only. DataStates-LLM: lazy asynchronous checkpointing via composable state providers to cut I/O overheaddoi:10.48550/arxiv.2406.10707
- (2024). ByteCheckpoint: A Unified Checkpointing System for Large Foundation Model Development — arXiv preprint. Abstract only. ByteCheckpoint: unified high-performance checkpointing with resharding across frameworks and storage backendsdoi:10.48550/arxiv.2407.20143
- (2025). FlashRecovery: Fast and Low-Cost Recovery from Failures for Large-Scale Training of LLMs — arXiv preprint. Abstract only. FlashRecovery: active real-time failure detection plus fast, low-cost recovery for large-scale LLM trainingdoi:10.48550/arxiv.2509.03047
- (2025). FFTrainer: Fast Failover in Large-Language Model Training with Almost-Free State Management — arXiv preprint. Abstract only. FFTrainer: uses surplus network capacity for near-free state save/load; recovery time down up to 98%, GPU-utilization loss cut up to 68%doi:10.48550/arxiv.2512.03644
- (2026). PHOENIX: Resilient LLM Training with Hot-Swapping via Zero-Overhead Checkpoint — arXiv preprint. Abstract only. PHOENIX: hot-swapping failed nodes with spares via zero-overhead checkpoint, no job terminationdoi:10.48550/arxiv.2607.01646
- (2026). Direct Model State Migration for Elastic Training of Large Language Models — arXiv preprint. Abstract only. ETC: checkpoint-free direct model-state migration for elastic hybrid-parallel LLM trainingdoi:10.48550/arxiv.2607.04749
- (2022). Bamboo: Making Preemptible Instances Resilient for Affordable Training of Large DNNs — arXiv preprint. Abstract only. Bamboo: making cheap preemptible instances usable for large-DNN training through partial re-training and resiliencedoi:10.48550/arxiv.2204.12013
- (2020). A Study of Checkpointing in Large Scale Training of Deep Neural Networks — arXiv preprint. Abstract only. Measurement study of checkpoint-restart cost, formats and bottlenecks across three DL frameworks on HPCdoi:10.48550/arxiv.2012.00825
- (2024). Checkpoint and Restart: An Energy Consumption Characterization in Clusters — arXiv preprint. Abstract only. Characterises the energy consumption of checkpoint and restart operations on cluster nodesdoi:10.48550/arxiv.2409.02214
- (2023). Inshrinkerator: Compressing Deep Learning Training Checkpoints via Dynamic Quantization — arXiv preprint. Abstract only. Inshrinkerator: dynamic per-weight sensitivity-aware quantization plus delta compression of checkpointsdoi:10.48550/arxiv.2306.11800
- (2024). TorchTitan: One-stop PyTorch native solution for production ready LLM pre-training — arXiv preprint. Abstract only. TorchTitan: PyTorch-native production pretraining system; reference for async checkpointing and FT-HSDP stacksdoi:10.48550/arxiv.2410.06511
- (2025). Beyond A Single AI Cluster: A Survey of Decentralized LLM Training — arXiv preprint. Abstract only. First comprehensive survey of decentralized LLM training; community-driven vs organizational taxonomydoi:10.48550/arxiv.2503.11023