REVIEW 4 major objections 4 minor 59 references
Compute-Optimal Is Not Cluster-Optimal: Systems-Aware Scaling for Sparse Mixture-of-Experts
T0 review · 4 major / 4 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read This paper argues that under a model-FLOPs budget, optimal MoE sparsity is boundary-seeking, and that a true interior sparsity optimum appears only when the budget is the hardware-deliverable FLOPs a cluster can actually produce, so…
desk verdict Strong systems-side contribution with real runs and code, but the headline no-interior-sparsity result depends on one non-identified fit; worth refereeing with a request to perturb the ridge. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the deliverable model FLOPs, $C_{\mathrm{deliverable}} = C_{\mathrm{peak}} \times \mathrm{MFU}(Z, P_\ell, B) \times \eta_{\mathrm{good}}(N_{\mathrm{dev}})$, where $C_{\mathrm{peak}}$ is the raw peak-FLOPs ceiling of the cluster over the training window and MFU is the fraction of that ceiling converted into model-math FLOPs under an execution plan. MOSAIC (Model Optimization via Systems-Aware Training Co-design) is a mixed-integer nonlinear program that minimizes the predicted loss $L(N_{\mathrm{tot}}, S, D, G)$ from the joint scaling law subject to $C_{\mathrm{model}} = 6 N_{\mathrm{act}} D$ being no larger than $C_{\mathrm{deliverable}}$, with the inner maximization over feasible parallel layouts handled by the released performance estimator ScalePlan. The scaling law is fitted on 150 runs with variables chosen to expose systems efficiency: total parameters $N_{\mathrm{tot}}$, sparsity $S$ (the fraction of parameters inactive per token), tokens $D$, and expert split factor $G = d_{\mathrm{ff}}/d_{\mathrm{expert}}$ (the number of narrow experts per reference feed-forward network). Three structural properties make the bilevel program exactly solvable by enumeration: the loss is log-convex in its continuous variables, the non-convexity lives only in constraints, and the optimal token count $D^\star$ saturates the constraint in closed form. The Gumbel proposal-correction routing recipe keeps the 150-run sweep stable enough that final-checkpoint losses are comparable fit targets.
What would settle it
Extend the scaling-law dataset with runs at sparsity beyond the current support (for example $S=0.99$ and $S=0.995$), refit the joint law with alternative functional forms that let $G$ enter additively or with its own exponent per stratum, and solve the model-FLOPs-constrained minimization; if the fitted optimal loss $L^\star(S)$ develops an interior minimum above $S=0.981$, the no-interior-optimum claim is overturned.
Extended reading notes
Core claim
The central claim is stated directly in the abstract: within the calibrated sparsity range, an efficiency-agnostic model-FLOPs budget admits no interior optimal sparsity. The fitted loss decreases monotonically with sparser models and the compute optimum lies at the upper boundary of the data support; an optimal sparsity in MoE models instead emerges under the cluster's systems constraints, as captured by MOSAIC. The evidence is a four-dimensional scaling law $L(N_{\mathrm{tot}},S,D,G)=\frac{a}{N_{\mathrm{tot}}^\alpha}+\frac{b}{D^\beta}+\frac{c}{(1-S)^\lambda}+\frac{j}{(1-S)^\delta N_{\mathrm{tot}}^\gamma G^\eta}+e$ fit to 150 from-scratch runs spanning 104M--2.7B active and up to 79B total parameters, coupled to an operator-level performance model that predicts MFU and memory and selects the best parallel layout. On a fixed 32-node, 20-day envelope, the lowest-loss configuration is not the one that emits the most model FLOPs: a $G=4$, $E=96$, $K=2$ model at $N_{\mathrm{act}}=14.5\mathrm{B}$ and $S=0.956$ reaches loss $1.3898$ on about 36% fewer model FLOPs than the highest-MFU candidate. The paper therefore concludes that ranking MoE configurations by realized model FLOPs misorders them, and that the right budget is the hardware-deliverable FLOPs.
Load-bearing premise
The central claim that loss decreases monotonically with sparsity under a model-FLOPs budget is computed from a single fitted scaling-law form whose coefficients mostly lie on a flat identifiability ridge; if an equally admissible functional form produced a non-monotone loss in sparsity, the boundary-seeking conclusion would not hold.
Editorial extensions
If this is right
- Under a pure model-FLOPs budget, any practitioner using this law will be pushed to the maximum supported sparsity; the correct sparsity for a given cluster and training window can only be found by pricing in the attainable MFU.
- The same MoE geometry can rank first on one cluster and lower on another, because expert all-to-all crossing node boundaries, pipeline fill ratio, and memory pressure shift with device count and interconnect; MOSAIC's budget sweeps show the optimal sparsity stays on a plateau of roughly 0.915--0.963 while the expert split factor often ties near $G=4$.
- Layout rules from the validated performance model---keep expert parallelism inside the NVLink domain, fix tensor parallelism to 1, and keep the pipeline fill ratio $r_{\mathrm{fill}} = n_{\mathrm{mb}}/P_{\mathrm{PP}}$ at or above 4---give immediate throughput guidance for MoE training runs.
- Comparisons between MoE architectures that count only model FLOPs can misrank them by a wide margin; dividing by measured or predicted MFU to plot loss against hardware compute restores the ordering, as the staged runs show.
- Because the configuration search is exact over the realizable grid under the stated assumptions, MOSAIC's output is a concrete, launchable model plus parallel layout rather than a continuous prescription that must be discretized afterward.
Reading between the lines
- A direct testable extension: re-run prior MoE scaling-law analyses (for example those that fix active parameters or report an interior optimal sparsity) under a fixed deliverable-FLOPs budget; the paper's boundary-versus-interior claim predicts their optima will shift toward sparser or denser geometries depending on the cluster.
- The boundary-seeking result is conditional on the parametric form of the joint scaling law; because most of its coefficients sit on a flat identifiability ridge, the monotone descent in sparsity may not be a robust law, and sensitivity of the optimal sparsity to alternative functional forms is a necessary check the paper leaves open.
- The MOSAIC formulation itself is not MoE-specific: the same coupling of a scaling law, a calibrated performance model, and a discrete architecture grid could be applied to dense transformers, hybrid architectures, or inference-time budgets, where the same model-FLOPs-versus-deliverable-FLOPs distinction should appear.
- The fixed geometry ladder (one depth-to-width co-scaling family) constrains the search; allowing multiple ladders would reveal whether the plateau in optimal sparsity and the near-tie at $G=4$ are properties of the loss surface or artifacts of the single backbone family.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes MOSAIC, a framework that couples a four-dimensional sparse-MoE scaling law (total parameters, sparsity, tokens, expert split factor) with an analytical, microbenchmark-calibrated performance model, and searches jointly over architecture and parallelism layout under a fixed hardware envelope. On roughly 150 from-scratch pretraining runs, the authors fit the scaling law, validate the performance model's MFU predictions on sweeps up to 18B active parameters, and report that an efficiency-agnostic model-FLOPs budget admits no interior sparsity optimum within the calibrated range, whereas a hardware-deliverable compute budget produces an interior cluster-optimal sparsity. Staged training runs up to 250B total parameters are used to check the predicted loss ordering on both model-FLOPs and hardware-compute axes.
Significance. If the central claims hold, the paper makes a genuinely useful contribution: it identifies a concrete failure mode of model-FLOPs-only scaling prescriptions for sparse MoEs, and it demonstrates a working architecture-systems co-design pipeline with a released performance estimator (ScalePlan), a reproducible scaling-law fit, and real validation runs. The empirical observation that loss ordering can flip between the model-FLOPs axis and the hardware-compute axis is valuable regardless of the exact fitted coefficients. However, the load-bearing no-interior-optimum result is computed from one point on a flat identifiability ridge of the fitted law, and the paper itself acknowledges that uncertainty in the non-identified coefficients is not propagated. The central claim is therefore defensible but not yet airtight; it requires a ridge-aware sensitivity analysis before it can be stated as a general property of sparse MoE scaling rather than a property of one admissible fit.
major comments (4)
- [Section 6.1, Eq. (16), Table 2, Appendix B.2] The no-interior-optimum claim is computed by solving Eq. (16) with the fitted law Eq. (10), but Table 2 and Appendix B.2 state that only eta and beta are identified and that the remaining coefficients lie on a wide, near-flat ridge. Appendix B.2 explicitly recommends that downstream sensitivity studies perturb these coefficients jointly along the ridge, yet no such study is reported. Since the monotonicity of L*(S) is controlled by the balance between the capacity term a/N^alpha and the sparsity terms c/(1-S)^lambda and j/((1-S)^delta N^gamma G^eta), an equally admissible ridge-consistent fit with a larger lambda or delta can produce an interior S*. Because the headline claim is exactly the assertion that no interior optimum exists, this identifiability issue is load-bearing and must be addressed with joint ridge perturbations or with an alternative functional form analysis.
- [Section 7.3, Table 3, Section 7.3.1, Section 9] The MOSAIC optimum under the 32-node, 20-day envelope is reported at Cmodel values roughly 150x beyond the largest fitted compute budget, and Section 7.5's staged runs also operate 15-20x beyond the fitted regime. Section 9 concedes that some reported optima require substantial extrapolation. The boundary-seeking result and the cluster-optimal rankings both rely on the fitted law in this extrapolated region, where the form-imposed blow-up as S approaches 1 is not empirically measured (Appendix B.2). The authors should provide an intermediate-scale validation, or explicitly frame the results as extrapolations whose ranking confidence is not quantified.
- [Section 5.5, Eq. (14)-(15), Section 7.2] The performance model's only fitted correction, chi_sys, is calibrated against measured iteration times but is not validated on held-out sweeps or ablated from the model. The reported MAPE under 15% validates the end-to-end MFU prediction, but it does not establish that chi_sys is physically identified rather than compensating for misspecifications elsewhere in the analytical model. Since chi_sys enters the feasibility constraint (C-FLOPs) and thus the MOSAIC ranking, the framework's sensitivity to this calibration should be characterized, for example by refitting on a subset of sweeps and testing on the remainder, or by reporting predictions with chi_sys fixed to 1.
- [Section 4.2, Figure 6] Figure 6 shows that the fitted law decreases monotonically with G at matched (Ntot, S, D), while the observed runs decrease up to G=4 and flatten or slightly reverse at G=8 within run noise. Since G is a searched dimension in MOSAIC and G=8 appears in the budget sweeps of Section 7.4, the law's extrapolation along G is not well supported by the observed data. The authors should either restrict the search to the G range where the law is empirically validated, or provide additional G=8 runs to resolve whether the predicted monotone advantage is real.
minor comments (4)
- [Global] The manuscript contains numerous formatting typos, including 'Systems-A ware', 'F actor', 'SparsitySand', and 'T raining' in section headings. A careful proofreading pass is needed.
- [Figure 1] Figure 1 states S_max = 0.985 in the left panel, while Table 6 reports the calibrated sparsity range as S in [0.499, 0.981]. The inconsistency should be resolved, since the boundary of the data support is central to the no-interior-optimum claim.
- [Section 7.3, Table 4] The reported optimal configuration is described as the exact optimum of the enumerated grid, but the token budget D is selected on a capped TPP grid of [40, 150]; the paper should state more explicitly that the optimum is exact only up to the resolution of that grid and the discrete search dimensions.
- [Appendix B.2] The distinction between the local BCa intervals in Table 2 and the true cross-basin spread along the ridge is well explained, but the paper should state in the main text, not only in the appendix, that the confidence intervals in Table 2 do not reflect the ridge uncertainty.
Circularity Check
No significant circularity: the pipeline is fit-then-optimize with independent hardware validation; identifiability caveats are correctness risks, not circular reasoning.
full rationale
The paper's central claims are produced by fitting the joint scaling law of Eq. (10) to 150 real pretraining runs and then solving the constrained optimizations of Eqs. (16) and (C-FLOPs). The boundary-seeking sparsity result is an argmin of that fitted law, not a parameter that was fit as an input, so it is not a fitted quantity being renamed as a prediction. Likewise, MOSAIC's cluster-optimal sparsity is the output of a mixed-integer program whose objective is the same fitted loss and whose feasibility constraint uses a performance model calibrated against measured kernel and collective microbenchmarks and validated with under 15% MFU error. The staged validation runs in Section 7.5 compare measured loss and measured MFU, so the observed ordering flip between the model-FLOPs and hardware-compute axes is an external check rather than a consequence of the model's own definitions. The only self-citation (Sarkar et al., 2024) is a background pointer for MoE architecture adoption and is not load-bearing. The paper explicitly acknowledges that most scaling-law coefficients lie on a flat identifiability ridge and that coefficient uncertainty is not propagated through the search (Section 9, Appendix B.2); this is a robustness and extrapolation limitation affecting the confidence in any single optimum, but it does not make the derivation circular. No step in the derivation reduces by definition or by self-citation to its own inputs.
Assumptions & free parameters
free parameters (15)
- scaling law prefactor a =
8.462
- scaling law exponent alpha =
0.1048
- scaling law prefactor b =
88.32
- scaling law exponent beta =
0.2070
- sparsity floor prefactor c =
0.1828
- sparsity floor exponent lambda =
0.1249
- interaction prefactor j =
0.7123
- interaction sparsity exponent delta =
0.5567
- interaction capacity exponent gamma =
0.1702
- expert split exponent eta =
0.9513
- irreducible loss e =
0.3129
- learning-rate law prefactor and exponent =
3.30, -0.199
- chi_sys correction coefficients c_A2A, c_PP, c_ovl =
not reported
- geometry ladder constants =
m=4, d_ff=2.5*d_model, d_head=128
- routing and recipe constants =
tau=0.01, rho=12, mu_b=1e-3, z-loss coeff 1e-4, seq aux coeff 1e-3
assumptions (6)
- domain assumption The four-term posynomial scaling law in Eq. (10) is the correct loss surface for sparse MoE models over the searched range
- domain assumption The fitted scaling law extrapolates far beyond its training compute range
- domain assumption The performance model with additive compute, dispatch, pipeline, and vocabulary terms plus a single correction chi_sys captures cluster throughput
- ad hoc to paper The geometry ladder co-scaling family fixes L_layers=4q, n_head=4q, d=128*n_head, and d_ff=2.5*d
- ad hoc to paper The LFLB routing modifications with Gumbel proposal-correction, row normalization, and RMS bias controller keep training stable
- domain assumption A single pass over the mC4 corpus with final-checkpoint smoothed loss is an adequate proxy for the loss surface
Cite this review
Pith. "Pith review of Compute-Optimal Is Not Cluster-Optimal: Systems-Aware Scaling for Sparse Mixture-of-Experts." pith.science (2026). https://pith.science/paper/JR3OG3MI
@misc{pith2026260810605,
author = {Pith},
title = {Pith review of: Compute-Optimal Is Not Cluster-Optimal: Systems-Aware Scaling for Sparse Mixture-of-Experts},
year = {2026},
howpublished = {\url{https://pith.science/paper/JR3OG3MI}},
note = {Machine review of arXiv:2608.10605}
}
abstract
In large-scale pretraining, the algorithm, architecture, and systems decisions are conventionally made in disconnected stages. A scaling law stage selects an architecture and training recipe, optimizing loss under compute constraints, and a separate systems stage then optimizes the implementation for hardware efficiency. In this work, we develop MOSAIC, which formulates model architecture and systems co-design as an optimization problem. MOSAIC couples a predictive scaling law with a calibrated performance model that estimates Model FLOPs Utilization (MFU), communication cost, memory footprint, and the best parallel layout. We instantiate the framework for sparse Mixture-of-Experts (MoE) language models, where expert count, routing sparsity, and other MoE layer dimensions affect both the loss and systems efficiency. We fit a scaling law on sparse MoE models trained on text data, whose scaling dimensions include the sparsity factor, which is the fraction of model parameters inactive per token in a forward pass. The scaling law sweeps in our work span active parameters from $104$ million to $2.7$ billion and total model sizes reaching $79$ billion parameters. We show that, within the calibrated sparsity range, an efficiency-agnostic model-FLOPs budget admits no interior optimal sparsity. The fitted loss decreases monotonically with sparser models and the compute optimum lies at the upper boundary of the data support. An optimal sparsity in MoE models instead emerges under the cluster's systems constraints, as captured by MOSAIC. Our results argue for a shift towards unified architecture and systems co-design for frontier language model training.
Figures
Figures from the paper (13 more)
Reference graph
Works this paper leans on
-
[1]
arXiv preprint arXiv:2001.08361 , year=
Scaling laws for neural language models , author=. arXiv preprint arXiv:2001.08361 , year=
arXiv 2001
-
[2]
arXiv preprint arXiv:2203.15556 , year=
Training compute-optimal large language models , author=. arXiv preprint arXiv:2203.15556 , year=
-
[3]
OpenAI blog , volume=
Language models are unsupervised multitask learners , author=. OpenAI blog , volume=
-
[4]
arXiv preprint arXiv:2405.18392 , year=
Scaling Laws and Compute-Optimal Training Beyond Fixed Training Durations , author=. arXiv preprint arXiv:2405.18392 , year=
-
[5]
arXiv preprint arXiv:2402.07871 , year=
Scaling laws for fine-grained mixture of experts , author=. arXiv preprint arXiv:2402.07871 , year=
-
[6]
The Journal of Machine Learning Research , volume=
Switch transformers: Scaling to trillion parameter models with simple and efficient sparsity , author=. The Journal of Machine Learning Research , volume=. 2022 , publisher=
2022
-
[7]
arXiv preprint arXiv:2602.17004 , year=
Arcee trinity large technical report , author=. arXiv preprint arXiv:2602.17004 , year=
-
[8]
arXiv preprint arXiv:2401.06066 , year=
Deepseekmoe: Towards ultimate expert specialization in mixture-of-experts language models , author=. arXiv preprint arXiv:2401.06066 , year=
Show all 59 references
-
[9]
arXiv preprint arXiv:2507.20534 , year=
Kimi k2: Open agentic intelligence , author=. arXiv preprint arXiv:2507.20534 , year=
-
[10]
arXiv preprint arXiv:1701.06538 , year=
Outrageously large neural networks: The sparsely-gated mixture-of-experts layer , author=. arXiv preprint arXiv:1701.06538 , year=
-
[11]
arXiv preprint arXiv:2303.06182 , year=
Towards MoE Deployment: Mitigating Inefficiencies in Mixture-of-Expert (MoE) Inference , author=. arXiv preprint arXiv:2303.06182 , year=
-
[12]
arXiv preprint arXiv:2409.01483 , year=
Revisiting smoe language models by evaluating inefficiencies with task specific expert pruning , author=. arXiv preprint arXiv:2409.01483 , year=
-
[13]
arXiv preprint arXiv:1712.00409 , year=
Deep learning scaling is predictable, empirically , author=. arXiv preprint arXiv:1712.00409 , year=
-
[14]
21st USENIX Symposium on Networked Systems Design and Implementation (NSDI 24) , pages=
\ MegaScale \ : Scaling large language model training to more than 10,000 \ GPUs \ , author=. 21st USENIX Symposium on Networked Systems Design and Implementation (NSDI 24) , pages=
-
[15]
International Conference on Learning Representations , year=
Towards greater leverage: Scaling laws for efficient mixture-of-experts language models , author=. International Conference on Learning Representations , year=
-
[16]
arXiv preprint arXiv:2306.03745 , year=
Soft merging of experts with adaptive routing , author=. arXiv preprint arXiv:2306.03745 , year=
-
[17]
Proceedings of the National Academy of Sciences , volume=
Explaining neural scaling laws , author=. Proceedings of the National Academy of Sciences , volume=. 2024 , publisher=
2024
-
[18]
arXiv preprint arXiv:2202.08906 , year=
St-moe: Designing stable and transferable sparse expert models , author=. arXiv preprint arXiv:2202.08906 , year=
-
[19]
arXiv preprint arXiv:2010.11934 , year=
mT5: A massively multilingual pre-trained text-to-text transformer , author=. arXiv preprint arXiv:2010.11934 , year=
2010 arXiv
-
[20]
arXiv preprint arXiv:1711.05101 , year=
Decoupled weight decay regularization , author=. arXiv preprint arXiv:1711.05101 , year=
-
[21]
International Conference on Machine Learning , pages=
Unified scaling laws for routed language models , author=. International Conference on Machine Learning , pages=. 2022 , organization=
2022
-
[22]
International Conference on Machine Learning , pages=
Deepspeed-moe: Advancing mixture-of-experts inference and training to power next-generation ai scale , author=. International Conference on Machine Learning , pages=. 2022 , organization=
2022
-
[23]
Advances in Neural Information Processing Systems , volume=
Kinetics: Rethinking Test-Time Scaling Law , author=. Advances in Neural Information Processing Systems , volume=
-
[24]
arXiv preprint arXiv:1909.08053 , year=
Megatron-lm: Training multi-billion parameter language models using model parallelism , author=. arXiv preprint arXiv:1909.08053 , year=
1909 arXiv
-
[25]
arXiv preprint arXiv:2410.06511 , year=
TorchTitan: One-stop PyTorch native solution for production ready LLM pre-training , author=. arXiv preprint arXiv:2410.06511 , year=
-
[26]
Proceedings of the 37th International Conference on Supercomputing , pages=
A hybrid tensor-expert-data parallelism approach to optimize mixture-of-experts training , author=. Proceedings of the 37th International Conference on Supercomputing , pages=
-
[27]
Advances in Neural Information Processing Systems , volume=
Mixture-of-experts with expert choice routing , author=. Advances in Neural Information Processing Systems , volume=
-
[28]
arXiv preprint arXiv:2512.16248 , year=
Sigma-MoE-Tiny Technical Report , author=. arXiv preprint arXiv:2512.16248 , year=
-
[29]
Proceedings of Machine Learning and Systems , volume=
MegaBlocks: Efficient Sparse Training with Mixture-of-Experts , author=. Proceedings of Machine Learning and Systems , volume=
-
[30]
Sparse Backpropagation for
Liu, Liyuan and Gao, Jianfeng and Chen, Weizhu , journal=. Sparse Backpropagation for
-
[31]
International Conference on Learning Representations (ICLR) , year=
Auxiliary-Loss-Free Load Balancing Strategy for Mixture-of-Experts , author=. International Conference on Learning Representations (ICLR) , year=
-
[32]
, journal=
Yellott, John I. , journal=. The relationship between. 1977 , publisher=
1977
-
[33]
Stochastic Beams and Where to Find Them: The
Kool, Wouter and van Hoof, Herke and Welling, Max , booktitle=. Stochastic Beams and Where to Find Them: The. 2019 , publisher=
2019
-
[34]
Parameters vs
Abnar, Samira and Shah, Harshay and Busbridge, Dan and Ali, Alaaeldin Mohamed Elnouby and Susskind, Josh and Thilak, Vimal , journal=. Parameters vs
-
[35]
Optimization and Engineering , volume=
A tutorial on geometric programming , author=. Optimization and Engineering , volume=. 2007 , publisher=
2007
-
[36]
arXiv preprint arXiv:2411.13055 , year=
Hardware Scaling Trends and Diminishing Returns in Large-Scale Distributed Training , author=. arXiv preprint arXiv:2411.13055 , year=
-
[37]
Proceedings of the 53rd International Conference on Parallel Processing (ICPP '24) , year=
The Case for Co-Designing Model Architectures with Hardware , author=. Proceedings of the 53rd International Conference on Parallel Processing (ICPP '24) , year=
-
[38]
arXiv preprint arXiv:2501.06589 , year=
Ladder-residual: parallelism-aware architecture for accelerating large model inference with communication overlapping , author=. arXiv preprint arXiv:2501.06589 , year=
-
[39]
arXiv preprint arXiv:2408.00724 , year=
Inference Scaling Laws: An Empirical Analysis of Compute-Optimal Inference for Problem-Solving with Language Models , author=. arXiv preprint arXiv:2408.00724 , year=
-
[40]
Proceedings of the International Conference for High Performance Computing, Networking, Storage and Analysis (SC) , year=
Calculon: a Methodology and Tool for High-Level Co-Design of Systems and Large Language Models , author=. Proceedings of the International Conference for High Performance Computing, Networking, Storage and Analysis (SC) , year=
-
[41]
2024 57th IEEE/ACM International Symposium on Microarchitecture (MICRO) , pages=
vtrain: A simulation framework for evaluating cost-effective and compute-optimal large language model training , author=. 2024 57th IEEE/ACM International Symposium on Microarchitecture (MICRO) , pages=. 2024 , organization=
2024
-
[42]
arXiv preprint arXiv:2501.18107 , year=
Scaling Inference-Efficient Language Models , author=. arXiv preprint arXiv:2501.18107 , year=
-
[43]
Scaling Laws Meet Model Architecture: Toward Inference-Efficient
Bian, Song and Yu, Tao and Venkataraman, Shivaram and Park, Youngsuk , journal=. Scaling Laws Meet Model Architecture: Toward Inference-Efficient
-
[44]
Zheng, Size and Zheng, Xuegui and Chang, Li-wen and Zhai, Jidong , journal=
-
[45]
What Language Model to Train if You Have One Million
Le Scao, Teven and Wang, Thomas and Hesslow, Daniel and Saulnier, Lucile and Bekman, Stas and Bari, M Saiful and Biderman, Stella and Elsahar, Hady and Muennighoff, Niklas and Phang, Jason and Press, Ofir and Raffel, Colin and Sanh, Victor and Shen, Sheng and Sutawika, Lintang...
-
[46]
arXiv preprint arXiv:2605.01640 , year=
Prescriptive scaling laws for data constrained training , author=. arXiv preprint arXiv:2605.01640 , year=
-
[47]
arXiv preprint arXiv:2510.04800 , year=
Hybrid architectures for language models: Systematic analysis and design insights , author=. arXiv preprint arXiv:2510.04800 , year=
-
[48]
Wang, Irene and Ardalani, Newsha and Elhoushi, Mostafa and Jiang, Daniel and Hsia, Samuel and Sumbul, Ekin and Mahajan, Divya and Wu, Carole-Jean and Acun, Bilge , journal=
-
[49]
arXiv preprint arXiv:2603.21862 , year=
Holistic Scaling Laws for Optimal Mixture-of-Experts Architecture Optimization , author=. arXiv preprint arXiv:2603.21862 , year=
-
[50]
Hardware Co-Design Scaling Laws via Roofline Modelling for On-Device
Sun, Luoyang and Jiang, Jiwen and Ding, Yifeng and Li, Fengfa and Song, Yan and Zhang, Haifeng and Ying, Jian and Ren, Lei and Zhan, Kun and Chen, Wei and Xie, Yan and Deng, Cheng , journal=. Hardware Co-Design Scaling Laws via Roofline Modelling for On-Device
-
[51]
Ludziejewski, Jan and Pi. Joint. Proceedings of the 42nd International Conference on Machine Learning (ICML) , year=
-
[52]
arXiv preprint arXiv:2502.06857 , year=
Gemstones: A Model Suite for Multi-Faceted Scaling Laws , author=. arXiv preprint arXiv:2502.06857 , year=
-
[53]
arXiv preprint arXiv:2505.06708 , year=
Gated Attention for Large Language Models: Non-linearity, Sparsity, and Attention-Sink-Free , author=. arXiv preprint arXiv:2505.06708 , year=
-
[54]
arXiv preprint arXiv:2412.19437 , year=
-
[55]
arXiv preprint arXiv:2601.20205 , year=
Hyperparameter Transfer with Mixture-of-Expert Layers , author=. arXiv preprint arXiv:2601.20205 , year=
-
[56]
Advances in Neural Information Processing Systems , year=
FlashAttention: Fast and Memory-Efficient Exact Attention with IO-Awareness , author=. Advances in Neural Information Processing Systems , year=
-
[57]
arXiv preprint arXiv:2603.05451 , year=
Flashattention-4: Algorithm and kernel pipelining co-design for asymmetric hardware scaling , author=. arXiv preprint arXiv:2603.05451 , year=
-
[58]
Journal of machine learning research , volume=
Palm: Scaling language modeling with pathways , author=. Journal of machine learning research , volume=
-
[59]
Proceedings of the 52nd Annual International Symposium on Computer Architecture , year=
Scaling Llama 3 Training with Efficient Parallelism Strategies , author=. Proceedings of the 52nd Annual International Symposium on Computer Architecture , year=
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.