Pith. sign in

REVIEW 3 major objections 4 minor 20 references

DARTree: Speculative Diffusion Decoding with Autoregressive Draft Trees

T0 review · 3 major / 4 minor · reviewed 2026-08-14 · deepseek-v4-flash

Pith's one-line read Speculative decoding with draft trees accepts up to 12.97 tokens per round, reaching 9.73x lossless speedup.

desk verdict DARTree is a genuinely useful contribution to diffusion-based speculative decoding, held back by overfit hyperparameters and missing error bars, but deserving of peer review. read the letter →

arxiv 2608.13524 v1 pith:MVDU2CGF submitted 2026-08-13 cs.LG

classification cs.LG
keywords speculativedecodingdiffusionlanguagemodelsdrafttreesautoregressivecorrectionheadtreeattentionverificationbest-firstpruninglosslessacceleration
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Speculative decoding speeds up large language models by having a cheap drafter propose several future tokens and a target model verify them in parallel; the gains are capped by how often the proposals are accepted. Diffusion-based drafters propose entire blocks at once, but each position is predicted independently of the draft tokens that precede it, and existing correction heads only fix that along a single chain. DARTree claims the correction head can be applied to a whole tree of candidate branches in batched, depth-wise passes, and then pruned with one global top-B selection, avoiding the sequential interleaving of correction and heap search. Across seven math, code, and chat benchmarks, the paper reports the highest average acceptance length and speedup in all four model-temperature configurations it tests, with up to 12.97 accepted tokens per verification round and up to 9.73x speedup over locally measured autoregressive decoding.

What carries the argument

The load-bearing object is the depth-wise batched AR expansion step (Algorithm 1, lines 3–11): all candidate extensions at a depth are corrected and scored in one tensorized batch using each branch's own prefix state, then global top-W selection prunes to the next layer. The second piece is Lemma 1's heap–top-B equivalence: with a depth bonus $\beta \le 0$, every child's score satisfies $s_{\beta}(u_{1:d}) = s_{\beta}(u_{<d}) + \log \tilde{q}_d(u_d) + \beta \le s_{\beta}(u_{<d})$, so scores never increase along a root-to-leaf path, the top-B set is prefix-closed, and a single global top-B operation returns the same tree as the sequential best-first max-heap. Together these pieces decouple correction-head inference from node-by-node heap operations, which is the bottleneck that made earlier corrected-tree construction slow.

What would settle it

Two checks would settle the central claim: first, compare DARTree with Domino-chain + DDTree, both using the same frozen correction head and the same 64-node budget, on unseen-domain prompts; if DARTree's pruned trees accept no more tokens than the chain-corrected tree, the claimed benefit of branch-specific correction fails. Second, test Lemma 1's equivalence by materializing a random supertree with $\beta \le 0$ and verifying that sequential heap selection and global top-B selection return identical trees; a mismatch would indicate the pruning step does not preserve best-first selection.

Watch

Extended reading notes

Core claim

DARTree's central claim is that the missing causal conditioning in block-parallel diffusion drafters — each draft position is scored from the verified prefix only, not from the realized draft tokens — can be restored branch-wise without paying the cost of sequential search. Starting from shared block representations produced by one diffusion-drafter forward pass, DARTree keeps the top-K candidate tokens at each depth, runs the pretrained correction head on all active branches in one batch, scores each extension by cumulative corrected log-probability plus a negative depth bonus, keeps the top-W nodes per depth, and only after the whole candidate supertree is built selects the top-B nodes by a single global sort for the target model's tree verification. It claims this preserves DDTree's best-first selection exactly, via Lemma 1, while making construction latency nearly independent of tree width, and that the measured result is the highest average acceptance length and speedup among the tested diffusion-tree baselines across all four model-temperature configurations.

Load-bearing premise

The weakest load-bearing premise is that the pretrained Domino correction head, which was trained to correct a single draft chain, still produces well-calibrated conditional token scores when DARTree constructs tree branches whose prefixes lie outside that training distribution.

Editorial extensions

If this is right

  • DARTree can reuse a pretrained causally corrected diffusion drafter without any training, so any released model with such a correction head can adopt the method; the DSpark-Markov ablation shows the construction is not Domino-specific.
  • Because target-model tree verification is unchanged, the sampling distribution of the target model is preserved, making the reported speedups lossless.
  • Since wider layer expansion adds little latency, the verification budget can be shifted from wide shallow layers to deeper, narrower trees, which the node-depth analysis identifies as the source of DARTree's longer accepted continuations.
  • At higher serving concurrency the large-tree verification overhead erodes the speedup, so the method is intended for low-concurrency or latency-critical single-request settings, and adaptive budget/width schedules recover some of the loss.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Inference: the benefit should grow with draft length, since Figure 5 shows many rounds hit the 16-token draft-block boundary; a drafter trained with longer blocks would likely amplify DARTree's margin over chain-only correction.
  • Inference: the 'score first, prune later' pattern extends beyond diffusion drafters to any path-dependent tree construction where scores are non-increasing along paths, so similar batched-correction trees could be built for EAGLE-style feature predictors.
  • Inference: the main transfer risk is calibration of the frozen correction head on the semantically odd branches DARTree generates; one could quantify this by comparing the head's corrected scores with target acceptance frequencies on out-of-distribution prefixes.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. DARTree is a training-free speculative decoding method that extends a pretrained autoregressive correction head (Domino) from single-chain correction to tree-structured candidate generation. It replaces node-wise best-first search with depth-wise batched expansion of a fixed-width supertree, scores all child extensions in one batch with the correction head, and applies a global top-B prune after construction, using a non-positive depth bonus to preserve prefix closure. Experiments on seven math, code, and chat benchmarks with Qwen3-4B and Qwen3-8B at T=0 and T=1 report higher average acceptance length and speedup than DFlash, DDTree, and Domino in all four model-temperature configuration blocks, with up to 12.97 accepted tokens per round and 9.73x speedup over local autoregressive decoding. The paper also includes ablations, a transfer experiment to DSpark-Markov, a low-concurrency analysis, and a proof of Lemma 1 in Appendix C.

Significance. If the empirical claims hold, DARTree is a practically useful contribution to low-concurrency diffusion-based speculative decoding: it identifies a real latency bottleneck in coupling path-conditioned correction with heap-based tree construction, and the proposed depth-wise batching plus deferred pruning is simple, training-free, and architecture-agnostic. Strengths include broad benchmark coverage across three domains and two model sizes, ablations isolating the construction strategy, a second-correction-head transfer study, the correct and concise Appendix C proof of the heap-top-B equivalence, and an explicit scope statement in Appendix B backed by concurrency measurements. The main caveats are that the headline hyperparameters were selected on the reporting benchmarks, Table 1 has no variance estimates, and the T=1 losslessness argument is asserted rather than proved.

major comments (3)
  1. [§5, Figures 4 and 6, and Table 1] The headline configurations are selected on the same benchmarks used for the main claims. The text states that W=12, B=64, beta=-0.2, and K=64 were chosen by averaging over GSM8K, HumanEval, and MT-Bench, and these exact benchmarks appear in Table 1; Figure 4(b) explicitly picks B=64 as a 'balanced operating point' from the speedup curve on those same benchmarks. Because DFlash, DDTree, and Domino are evaluated with their defaults while DARTree's parameters are tuned in-sample, the claim of the highest average acceptance length and speedup in all four configurations is partly a fitted comparison. Please report standard errors for Table 1, choose or pre-register configurations on a held-out validation split (or report main results over a small grid), and state explicitly whether any baseline hyperparameters were tuned on the same benchmarks.
  2. [§4, Algorithm 1 line 6, and §5 Table 3] The method's transferability rests on an unvalidated assumption: that the pretrained single-chain Domino correction head yields rank-faithful conditional scores on arbitrary tree branches, including low-probability or semantically unusual prefixes constructed by depth-wise expansion. The comparison in Table 2 against Sequential Correction w. Heap validates the depth-wise batching schedule under the same head, but it cannot validate the head's fidelity to the target model: a head that ranks off-distribution branches poorly would degrade both DARTree and the sequential oracle. Appendix A acknowledges reliance on a pretrained correction head, yet no calibration or rank-fidelity measure is reported, and the DSpark-Markov transfer in Table 3 only changes the head, not the distribution of tested branches. Please add a direct audit, for example top-K agreement between the correction head's scores and the target model's greedy or sampled tokens at unpruned and pruned branch nodes on a holdout set, and report it for both Domino and DSpark-Markov.
  3. [§2, Eqs. (1)-(2), and §5 Evaluation Details] The T=1 losslessness claim is not proved in the text. Section 2 derives rejection sampling for a single chain using the acceptance probability in Eq. (1) and the replacement distribution in Eq. (2), but Section 5 states that verification instead accepts the longest sampled prefix in the draft tree and emits the target sample at the first mismatch. These are different algorithms, and the distributional correctness of the tree-membership rule for arbitrary candidate sets is asserted rather than demonstrated. Please add a short proof (by induction on the accepted prefix, each emitted token is a fresh sample from p_T given the history, so the stopping rule does not distort the marginal distribution) or cite an existing theorem that directly covers tree-membership verification.
minor comments (4)
  1. [§3, Lemma 1] The tie-breaking convention 'ancestors are preferred under ties' appears only in the Appendix C proof; state it in the main text immediately before Lemma 1 so the lemma is self-contained.
  2. [Equation (5)] Since beta is constrained to be non-positive, the term beta*d is a depth penalty; calling it a 'depth bonus' in the surrounding text is confusing and should be changed to 'depth penalty' throughout.
  3. [Figure 7 and Appendix C] The caption of Figure 7 says each panel contains 10 example trees, but the rows are not labeled as tree indices in the main text; add an explicit row label to each panel for readability.
  4. [§5, Experimental Setup] The description of DARTree (fixed) as distributing the budget uniformly is clear, but the abstract and Figure 1 use 'fixed-width AR tree growth' without defining the width; state once that the fixed variant retains B/gamma nodes per depth.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: DARTree's construction and pruning are defined independently of the measured acceptance and speedup targets, and the central comparison uses external baselines and locally measured decoding.

full rationale

DARTree's pipeline is self-contained: Algorithm 1 constructs a supertree using a pretrained, externally released correction head (Domino, or DSpark-Markov in Table 3), scores prefixes by s_beta = sum log eq_i + beta d (Eq. 5), and prunes by a global top-B selection. Lemma 1 is a proved monotonicity statement about heap-vs-top-B equivalence on the materialized supertree, not an imported uniqueness theorem, and it does not equate the corrected surrogate scores with target-model acceptance probabilities. The headline acceptance length and speedup are measured against locally measured autoregressive decoding and external baselines under a standard target-model tree-verification pass, so the reported result is not encoded in the construction by definition. The hyperparameters W=12, B=64, beta=-0.2, and K=64 are selected via ablations on a subset of the evaluation benchmarks, but this is ordinary hyperparameter selection for a fixed algorithm rather than a fitted parameter renamed as a prediction, and no equation in the paper makes the measured tau or eta a formal consequence of these settings. The self-citations in Related Work (Li et al. 2025a; Myrzakhan et al. 2026) are background references and are not load-bearing for any derivation. Appendix A's limitation, that DARTree requires a pretrained causally corrected drafter, is an honest scope restriction rather than a circular dependency. No circular step can be exhibited with a specific reduction.

Assumptions & free parameters 4 free parameters · 5 assumptions · 0 invented entities

The central claim rests on two kinds of support: standard speculative-decoding theorems from prior work, and empirical measurements enabled by a pretrained correction head. The free parameters K, W, B, and beta are tuned on the reporting benchmarks, which is the main source of fitted influence. No new physical or architectural entity is introduced; the candidate supertree is an algorithmic data structure, not an invented entity.

free parameters (4)
  • Candidate vocabulary size K = 64
    Cap on top-K token candidates per position fed to the AR correction head. Appendix D sweep over K on GSM8K, HumanEval, and MT-Bench at T=0 shows little effect for K=32 to 512; K=64 chosen as default.
  • Layer width W = 12
    Number of retained nodes per depth during supertree construction. Figure 4(a) sweep shows W=12 improves acceptance over W=4 with little added latency; no held-out validation.
  • Verification budget B = 64
    Total nodes in the final verification tree. Figure 4(b) and Appendix D sweep show speedup peaks near B=64-128 and falls at B=192; B=64 is selected and reused across all main benchmarks.
  • Depth bonus beta = -0.2
    Negative depth penalty in Eq. (5). Appendix D sweep on three benchmarks at T=0 finds best acceptance between -0.2 and -0.1; this value is fixed for all benchmarks and temperatures, including T=1 where it was not swept.
assumptions (5)
  • standard math Standard speculative sampling acceptance and rejection rules (Eqs. 1-2) preserve the target distribution.
    Used in the Preliminaries section to justify the lossless claim; theorem from Leviathan et al. and Chen et al. is cited, not re-proved.
  • domain assumption Tree attention lets the target model verify all candidate tree nodes in one forward pass with no change to each node's conditioning.
    Required by 'Tree Verification and DDTree' and used in every experiment; established in prior tree-decoding work, but no proof or kernel details appear in this paper.
  • domain assumption The released Domino correction head generalizes from a single draft chain to arbitrary tree branches.
    Algorithm 1 line 6 applies the head to every materialized branch prefix; the paper's transfer evidence is limited to the DSpark-Markov ablation in Table 3.
  • domain assumption T=1 tree verification by accepting the longest matching prefix of a single target sample is distribution-preserving.
    The Evaluation Details section states this procedure and attributes it to DFlash and DDTree; the lossless claim depends on it, and no explicit proof appears in the manuscript.
  • domain assumption Latency measurements via Eq. (7) with locally measured AR decoding constitute a fair cross-method comparison.
    All speedup numbers depend on this measurement protocol and on baseline implementations following prior work; the code is not shipped in the manuscript.

how reviews work

0 comments
Cite this review

Pith. "Pith review of DARTree: Speculative Diffusion Decoding with Autoregressive Draft Trees." pith.science (2026). https://pith.science/paper/MVDU2CGF

@misc{pith2026260813524,
  author       = {Pith},
  title        = {Pith review of: DARTree: Speculative Diffusion Decoding with Autoregressive Draft Trees},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MVDU2CGF}},
  note         = {Machine review of arXiv:2608.13524}
}
abstract

Speculative decoding losslessly accelerates autoregressive language models by verifying multiple draft tokens in parallel. Diffusion-based drafters further reduce proposal latency by predicting an entire token block in parallel, but their position-wise distributions are marginal rather than conditioned on tokens selected along each draft path. Existing recurrent correction incorporates causal information along a single draft chain, whereas diffusion-based tree construction broadens candidate coverage without carrying this correction along individual branches. We introduce DARTree, a training-free speculative decoding method that extends a pretrained AR correction head from chains to trees. DARTree first constructs a fixed-width candidate tree by expanding and scoring all nodes at each depth in a single batch, and then only applies best-first pruning to select the verification tree, decoupling AR-head inference from sequential heap operations. Across seven math, code, and chat benchmarks, DARTree achieves the highest average acceptance length and speedup in all four model--temperature configurations, accepting up to 12.97 tokens per verification round, 98.6\% more than DFlash and 27.9\% more than Domino in the same setting, and reaching up to 9.73$\times$ lossless speedup over locally measured autoregressive decoding.

Figures

Figures reproduced from arXiv: 2608.13524 by the authors.

Figure 1
Figure 1. Latency breakdown and effects of verification bud [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Speculative decoding speedup over standard autoregressive decoding across six benchmarks. DARTree with fixed [PITH_FULL_IMAGE:figures/full_fig_p002_2.png] view at source ↗
Figure 3
Figure 3. Overview of DARTree. Block-parallel drafting is followed by depth-wise batched AR expansion, deferred best-first pruning, and a single standard target-model tree-verification pass. Nodes sharing the same color are generated in the same depth-wise AR-head batch; rounded boxes indicate parameterized modules, while faded nodes are discarded by top-B pruning. DDTree enumerates them with best-first search using a max￾hea… view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: (b) fixes W = 12 and varies the target-verification budget. Larger budgets monotonically improve acceptance over most of the tested range, but speedup peaks around B = 64–128 and falls at B = 192. We therefore use B = 64 in the main experiments as a balanced operating …
Figure 5
Figure 5. Figure 5: Position-wise acceptance rates on GSM8K. Here, [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 6
Figure 6. Figure 6: Effect of (a) the depth bonus β and (b) the candidate-vocabulary cap K on Qwen3-4B, averaged equally over GSM8K, HumanEval, and MT-Bench. “Full” denotes the full vocabulary for AR-head correction scoring. heap with at least the same score. Thus each heap pop returns th…
Figure 7
Figure 7. Figure 7: Node-depth distributions of verification trees. Each panel contains 10 example trees constructed with budget B = 64. Each row denotes an individual tree, and the number in each cell is the number of nodes allocated to that depth [PITH_FULL_IMAGE:figures/full_fig_p012_7.png]
Figure 8
Figure 8. Figure 8: DDTree verification tree for the largest-animal prompt. The prompt is “Can you tell me what is the largest animal in the world?” The tree is constructed after the complete prefix “The largest animal in the world is the blue whale (Balaenoptera musculus). Key facts abou…
Figure 9
Figure 9. Figure 9: DARTree verification tree for the largest-animal prompt. The prompt is “Can you tell me what is the largest animal in the world?” The tree is constructed after the complete prefix “The largest animal in the world is the blue whale (Balaenoptera musculus). Key facts abo…
Figure 10
Figure 10. Figure 10: DDTree verification tree for the photosynthesis prompt. The prompt is “What is photosynthesis? Answer in exactly two short sentences.” The tree begins at the first generated token. The target model accepts the nine-token continuation Photosynthesis is the process by w…
Figure 11
Figure 11. Figure 11: DARTree verification tree for the photosynthesis prompt. The prompt is “What is photosynthesis? Answer in exactly two short sentences.” The tree begins at the first generated token. The target model accepts the twelve-token continuation Photosynthesis is the process b…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

20 extracted references · 3 canonical work pages

  1. [4]

    Chen, J.; Liang, Y.; and Liu, Z

    Accelerating large language model decoding with speculative sampling.arXiv preprint arXiv:2302.01318. Chen, J.; Liang, Y.; and Liu, Z

  2. [6]

    InProceedings of the 2025 Conference of the NationsoftheAmericasChapteroftheAssociationforCom- putationalLinguistics:HumanLanguageTechnologies(Vol- ume 1: Long Papers), 12042–12059

    Speculative dif- fusion decoding: Accelerating language generation through diffusion. InProceedings of the 2025 Conference of the NationsoftheAmericasChapteroftheAssociationforCom- putationalLinguistics:HumanLanguageTechnologies(Vol- ume 1: Long Papers), 12042–12059. Cobbe, K.; Kosaraju, V.; Bavarian, M.; Chen, M.; Jun, H.; Kaiser, L.; Plappert, M.; Twore...

  3. [9]

    Huang,J.;Zhang,Y.;Zhang,Q.;Lin,H.;Xu,H.;andZhang, L

    Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948. Huang,J.;Zhang,Y.;Zhang,Q.;Lin,H.;Xu,H.;andZhang, L

  4. [10]

    Leviathan, Y.; Kalman, M.; and Matias, Y

    Domino: Decoupling causal modeling from au- toregressivedraftinginspeculativedecoding.arXivpreprint arXiv:2605.29707. Leviathan, Y.; Kalman, M.; and Matias, Y

  5. [11]

    InInter- national Conference on Machine Learning, 19274–19286

    Fast infer- ence from transformers via speculative decoding. InInter- national Conference on Machine Learning, 19274–19286. PMLR. Li, T.; Chen, M.; Guo, B.; and Shen, Z. 2025a. A survey on diffusion language models.arXiv preprint arXiv:2508.10875. Li, Y.; Wei, F.; Zhang, C.; and Zhang, H. 2024a. Eagle- 2: Faster inference of language models with dynamic d...

  6. [12]

    Myrzakhan,A.;Li,T.;Guo,B.;Tang,S.;andShen,Z.2026

    Let’s Verify Step by Step.arXiv preprint arXiv:2305.20050. Myrzakhan,A.;Li,T.;Guo,B.;Tang,S.;andShen,Z.2026. Sink-aware pruning for diffusion language models.arXiv preprint arXiv:2602.17664. Nie, S.; Zhu, F.; You, Z.; Zhang, X.; Ou, J.; Hu, J.; Zhou, J.; Lin, Y.; Wen, J.-R.; and Li, C

  7. [13]

    Rheinboldt, P.; Berdoz, F.; and Wattenhofer, R

    Large language diffusion models.arXiv preprint arXiv:2502.09992. Rheinboldt, P.; Berdoz, F.; and Wattenhofer, R

  8. [14]

    Ringel, L.; and Romano, Y

    TreeFlash: Parallel AR-Approximation for Faster Specula- tive Decoding.arXiv preprint arXiv:2606.03819. Ringel, L.; and Romano, Y

Show all 20 references
  1. [15]

    Taori, R.; Gulrajani, I.; Zhang, T.; Dubois, Y.; Li, X.; Guestrin, C.; Liang, P.; and Hashimoto, T

    Accelerating speculative decoding with block diffusion draft trees.arXiv preprint arXiv:2604.12989. Taori, R.; Gulrajani, I.; Zhang, T.; Dubois, Y.; Li, X.; Guestrin, C.; Liang, P.; and Hashimoto, T. B

  2. [16]

    stanford

    Al- paca:Astrong,replicableinstruction-followingmodel.Stan- fordCenterforResearchonFoundationModels.https://crfm. stanford. edu/2023/03/13/alpaca. html, 3(6):

  3. [17]

    Xia, H.; Ge, T.; Wang, P.; Chen, S.-Q.; Wei, F.; and Sui, Z

    Fast-dllm: Training-free ac- celeration of diffusion llm by enabling kv cache and parallel decoding.arXiv preprint arXiv:2505.22618. Xia, H.; Ge, T.; Wang, P.; Chen, S.-Q.; Wei, F.; and Sui, Z

  4. [18]

    InFindings of the Association for Computational Linguistics: EMNLP 2023, 3909–3925

    Speculative decoding: Exploiting speculative execu- tion for accelerating seq2seq generation. InFindings of the Association for Computational Linguistics: EMNLP 2023, 3909–3925. Yang,A.;Li,A.;Yang,B.;Zhang,B.;Hui,B.;Zheng,B.;Yu, B.;Gao,C.;Huang,C.;Lv,C.;etal.2025. Qwen3technic...

  5. [19]

    Zhang, Y.; and Math-AI, T

    Dream 7b: Diffusion large language models.arXiv preprint arXiv:2508.15487. Zhang, Y.; and Math-AI, T

  6. [64]

    304.9 / 1.92×422.9 / 1.37×491.2 / 0.86×516.0 / 0.53×540.4 / 0.42× DFlash 672.3 / 4.23×1228.2 / 3.97×2045.4 / 3.58×2417.4 / 2.47×2605.5 / 2.00× Domino 677.1 / 4.26×1229.8 / 3.97×1977.8 / 3.46×2278.3 / 2.33×2471.3 / 1.90× DDTree (B=

  7. [2021]

    arXiv preprint arXiv:2110.14168

    Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168. Gloeckle, F.; Idrissi, B. Y.; Rozière, B.; Lopez-Paz, D.; and Synnaeve,G.2024.Better&fasterlargelanguagemodelsvia multi-token prediction.arXiv preprint arXiv:2404.19737. Gong, S.; Li, M.; Feng, J....

  8. [2022]

    Guo, D.; Yang, D.; Zhang, H.; Song, J.; Wang, P.; Zhu, Q.; Xu, R.; Zhang, R.; Ma, S.; Bi, X.; et al

    Dif- fuseq: Sequence to sequence text generation with diffusion models.arXiv preprint arXiv:2210.08933. Guo, D.; Yang, D.; Zhang, H.; Song, J.; Wang, P.; Zhu, Q.; Xu, R.; Zhang, R.; Ma, S.; Bi, X.; et al

  9. [2023]

    Arriola, M.; Gokaslan, A.; Chiu, J.; Yang, Z.; Qi, Z.; Han, J.; Sahoo, S.; and Kuleshov, V

    Gpt-4 technical report.arXiv preprint arXiv:2303.08774. Arriola, M.; Gokaslan, A.; Chiu, J.; Yang, Z.; Qi, Z.; Han, J.; Sahoo, S.; and Kuleshov, V

  10. [2024]

    Chen, C.; Borgeaud, S.; Irving, G.; Lespiau, J.-B.; Sifre, L.; and Jumper, J

    Medusa: Simple llm inference acceleration framework with multiple decoding heads.arXiv preprint arXiv:2401.10774. Chen, C.; Borgeaud, S.; Irving, G.; Lespiau, J.-B.; Sifre, L.; and Jumper, J

  11. [2025]

    InInternationalConferenceonLearningRepresen- tations

    Block diffusion: In- terpolating between autoregressive and diffusion language models. InInternationalConferenceonLearningRepresen- tations. Austin, J.; Johnson, D. D.; Ho, J.; Tarlow, D.; and van den Berg, R. 2021a. Structured Denoising Diffusion Models in Discrete State-Spac...

  12. [2026]

    Chen, M.; Tworek, J.; Jun, H.; Yuan, Q.; Pinto, H

    DFlash: Block Diffusion for Flash Speculative Decoding.arXiv preprint arXiv:2602.06036. Chen, M.; Tworek, J.; Jun, H.; Yuan, Q.; Pinto, H. P. D. O.; Kaplan, J.; Edwards, H.; Burda, Y.; Joseph, N.; Brockman, G.;etal.2021. Evaluatinglargelanguagemodelstrainedon code.arXiv prepri...

Pith tools

Reviewed August 14, 2026 · model on record in the stance chip above.