Pith. sign in

REVIEW 4 major objections 5 minor 17 references

Statistical Modeling and Uncertainty Estimation of LLM Inference Systems

T0 review · 4 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read The paper claims that LLM inference throughput for never-benchmarked workloads can be predicted by fitting an exponential saturation curve and learning its parameters, with a vector-similarity confidence score on every prediction.

desk verdict A plausible hybrid throughput predictor whose confidence measure is uncalibrated—it ignores hardware and model features, and Table I shows the failure. read the letter →

arxiv 2505.09319 v1 pith:QXG4QFRY submitted 2025-05-14 cs.PF

classification cs.PF
keywords LLMinferencethroughputpredictionanalyticalmodelingmachinelearningaugmentationuncertaintyquantificationsimulatedannealinggradient-boostedtreesworkloadgeneralization
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

The paper tries to establish that LLM inference throughput for workload configurations that have never been benchmarked can be predicted accurately by combining a simple analytical saturation curve with machine-learned curve parameters, and that each prediction can carry a usable confidence score. If true, operators could estimate performance for new input sizes, output sizes, batch sizes, models, and hardware without running exhaustive benchmarks, enabling cheaper scheduling and provisioning decisions. The authors show median percent errors around 23.65% across varied workloads, substantially below standard ML regressors, while the confidence score flags at least some distribution shifts, such as a lower-confidence prediction for a model executed on a different GPU family.

What carries the argument

The load-bearing object is the generalized exponential throughput model $\mathrm{thpt} = c - a e^{-b \cdot bb}$, whose three parameters are learned per input-size/output-size pair from benchmark data and predicted by a gradient-boosted tree regressor for new pairs. Around it, the machinery consists of (1) a percentile-based initialization and nonlinear least-squares fit for $(a,b,c)$; (2) a multi-output tree-based regressor using log and ratio features; (3) simulated annealing that walks through subsets of training points and logs each subset's median percentage error; (4) a second tree-based regressor trained on binary "which points are included" encodings to predict error for unseen subsets; and (5) a confidence score $c = 1/(1+d_{\min})$ derived from cosine histogram distance between the encoded new workload and the nearest logged subset. This chain lets the framework predict both a throughput number and a reliability estimate for it.

What would settle it

Run ALA on a held-out set of configurations that differ systematically in hardware, such as a GPU family absent from training, while keeping input/output and batch distributions identical to the training data, and compare predicted error, confidence, and actual error. If actual error exceeds predicted error in most cases where confidence is above 0.95, the central claim that the confidence score tracks reliability fails; the paper's hardware-mismatch case already provides a first such datum.

Watch

Extended reading notes

Core claim

The central claim is that throughput as a function of batch size follows the generalized exponential law $\mathrm{thpt} = c - a e^{-b \cdot bb}$ for fixed input/output sizes on a given hardware and software stack, with saturation ceiling $c$, spread $a$, and rate $b$. ALA fits $(a,b,c)$ to benchmarked input-output size pairs, trains a multi-output gradient-boosted tree regressor on engineered features such as log sizes and ratios to predict the parameters for unseen pairs, and then reconstructs a full throughput curve. To know when such extrapolation can be trusted, the framework runs simulated annealing over training-subset selections, records empirical median percentage errors for each subset, and trains a second gradient-boosted tree regressor on binary encodings of those subsets to predict error for unseen workloads. Confidence is then defined as $c = 1/(1+d_{\min})$, where $d_{\min}$ is the cosine distance between histograms of the new workload's features and the nearest logged training subset. On its evaluation, ALA attains median percent error 23.65% against 44.78% to 103.32% for linear regression, vanilla gradient boosting, random forest, and gradient boosting, and the confidence score is shown to be reliable on in-distribution workloads while flagging a hardware-mismatched case with lower confidence (0.67), though the actual error (39.88%) still exceeds the prediction (20.31%).

Load-bearing premise

The framework assumes that cosine distance between workload feature histograms measures how much a new configuration resembles the training data, and that this resemblance predicts prediction error even across different hardware and model families; the paper's own hardware-mismatch case, where confidence stayed at 0.67 while actual error was 39.88% against a predicted 20.31%, shows this assumption can fail in the extrapolation regime the confidence score is meant to cover.

Editorial extensions

If this is right

  • If the central claim holds, unobserved combinations of input size, output size, and batch size can be scored without benchmarking, reducing the cost of exploring deployment options.
  • The error predictor gives a way to choose which additional benchmarks would most reduce uncertainty: pick configurations far from the logged subsets.
  • The confidence score allows conservative operators to route predictions above a threshold into scheduling decisions.
  • Because the analytical curve is interpretable, the framework can also supply per-configuration throughput estimates to simulators that need a full trace.
  • The method's sample efficiency suggests small, well-chosen benchmark sets can replace exhaustive measurement campaigns.

Reading between the lines

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

  • A direct testable extension would replace the histogram cosine distance with a nearest-neighbor error estimate: average the actual errors of the $k$ closest logged subsets, which may predict error more faithfully than a single scalar distance.
  • The hardware-mismatch case suggests confidence should decompose into workload-feature similarity and hardware identity similarity, so that a new GPU family would not inherit high confidence from workload features alone.
  • If confidence is recalibrated, the same machinery could apply to latency and energy metrics, since the exponential saturation shape may also describe those as functions of batch size.
  • One could test the boundary by sweeping hardware, model family, and input/output distributions and checking whether confidence is monotone in true error across the sweep; the paper demonstrates monotonicity only within a narrow similarity band.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 5 minor

Summary. The paper proposes the Analytical with Learning Augmentation (ALA) framework for predicting LLM inference throughput. ALA first fits a generalized exponential model thpt = c - a*exp(-b*bb) for each (input size, output size) pair observed in a benchmark dataset, then trains an XGBoost multi-output regressor to predict the parameters (a,b,c) for unseen (ii,oo) pairs. Simulated annealing is used to explore subsets of the training data, and an XGBoost error predictor is trained on logs of the annealing process. Finally, the framework computes a confidence score c = 1/(1 + d_min) based on vector-space similarity between a new workload and previously seen subsets. The method is evaluated on an in-house dataset of about 4,800 points and on the public LLM-inference-bench dataset, and compared against linear regression, vanilla XGBoost, random forest, and gradient boosting. The authors report low median errors for ALA (23.65% vs. 44.78%-103.32% for baselines) and present a three-row table of predicted errors, confidence scores, and actual errors.

Significance. If the claims were fully validated, the ALA framework would be a practically useful tool for estimating LLM inference throughput across unbenchmarked configurations, with potentially meaningful applications in scheduling, resource provisioning, and cost-aware optimization. The paper has genuine strengths: it provides detailed pseudocode for all components, uses two datasets, includes an open-source benchmark, and explores a large parameter space. The central novelty, however, is the uncertainty-estimation mechanism, and that is exactly the component that the paper's own data fail to validate. The throughput-prediction comparison is also weakened by an under-specified evaluation protocol. The core pipeline is plausible, so the issues are addressable, but the confidence and adaptability claims need substantial additional support before the paper can be accepted.

major comments (4)
  1. [Section II-F / Algorithm 8 and Table I] The confidence measure is load-bearing for the paper's uncertainty claim, but Table I shows it is not calibrated. For Qwen2-7B on an Intel PVC GPU, the framework reports confidence 0.67 with a predicted error of 20.31% while the actual error is 39.88%. The authors attribute this gap to hardware mismatch, but Algorithm 8 computes d_min over encodings that, per Algorithm 7, contain only presence/absence of unique ii, bb, and oo values. Hardware, model, and precision are exactly the attributes excluded from the distance, so the confidence score cannot detect the mismatch that Table I identifies. With only three rows, no reliability diagram, and no coverage or calibration analysis, the claim that ALA 'quantifies uncertainty for unobserved workloads' is unsupported.
  2. [Section III-A / III-B, RQ2 / Fig. 7] The evaluation protocol for the main accuracy comparison is under-specified. The text does not state how the in-house dataset is split into training and test sets, how many repetitions produce the box plots in Fig. 7(a), or what exact error metric underlies 'median percent error.' The reported median values (23.65% for ALA versus 44.78%-103.32% for baselines) appear without error bars or a statement of the number of runs. Additionally, Fig. 7(b) plots ALA error across simulated-annealing iterations, but the training set changes at each iteration; the test set used for these evaluations must be defined for this plot to be interpretable.
  3. [Section II-A / II-C and Algorithm 5] The analytical model is not derived from first principles; its exponential form is chosen after inspecting the data (Section II-A), and Algorithm 2 fits (a,b,c) per unique (ii,oo) on the same benchmark data. Algorithm 5 then performs a direct lookup for any (ii,oo) already in the parameter database, so ML is invoked only for pairs not present in the database. This means the comparison with 'Vanilla XGBoost' and other baselines that regress directly on raw throughput is not necessarily apples-to-apples: for benchmarked configurations ALA uses fitted curves, while baselines must learn the whole mapping. The authors should specify whether the test set contains only unseen (ii,oo) pairs, report interpolation and extrapolation results separately, and ensure baselines receive comparable feature engineering.
  4. [Algorithm 8] The distance d_min is not defined in the pseudocode. The prose says it is the cosine distance between histograms of the (ii,oo,bb,thpt) features of the two sets, but Algorithm 7's encoding is a binary presence/absence vector over unique_ii, unique_bb, and unique_oo and does not include thpt or any histogram. The relationship between the binary encoding and the histogram distance is therefore unclear. Without a precise definition, the confidence score cannot be reproduced or independently evaluated.
minor comments (5)
  1. [Section III-B, RQ4] There is a typo in the sentence 'This highlights the the generalizability of the model...' — 'the' is repeated.
  2. [Algorithm 3, line 5] The feature named logbb is computed as log(1 + ii/oo), which is an input/output ratio, not a batch-size feature; the name is misleading and should be changed or the computation corrected.
  3. [Algorithms 6 and 7] Algorithm 6 refers generically to an error measure E, while Algorithm 7 says the target Y is MAPE; the text should state explicitly which error measure is used in the simulated-annealing logs and whether the same measure is used for evaluation.
  4. [Section III-B, RQ3] The text refers to the 'ANL dataset' while the experimental setup calls it the 'LLM-inference-bench dataset'; the terminology should be unified.
  5. [Figure 5] The layout of Fig. 5 is confusing: each of the four experiment panels appears to contain its own set of sublabels (a)-(d), and the caption does not clarify the arrangement. Please relabel the panels and describe the grid in the caption.

Circularity Check

2 steps flagged · score 4.0 of 10

ALA's benchmarked-configuration predictions reduce to fitted-curve lookup, and its confidence score is by definition inverse distance to training data; Table I's single cross-hardware row shows the measure is uncalibrated.

  1. fitted input called prediction [Algorithm 5 (Section II-D), with parameter fitting in Algorithm 2 (Section II-B)]
    "If a matching (ii,oo) entry exists, it uses the corresponding precomputed exponential model parameters to estimate throughput directly. ... The fitted parameters are stored in P, and the training parameters are appended to T."

    Algorithm 2 fits (a,b,c) by nonlinear least squares to the benchmarked throughput values for each unique (ii,oo) pair and stores them in P. Algorithm 5's first branch then returns c_hat - a_hat * exp(-b_hat * bb) for any test point whose (ii,oo) is in P. Thus for every previously benchmarked (ii,oo), the 'prediction' is just the fitted curve evaluated at bb; it is in-sample by construction, not an extrapolation. The paper does not state that the Figure 7 evaluation excluded all seen (ii,oo) pairs, so the reported low median error is at least partly forced by this lookup rather than by generalization to unobserved configurations.

  2. self definitional [Algorithm 8 and surrounding text (Section II-F); Table I (Section III-B)]
    "c← 1/(1+dmin); ... which inversely scales with distance — smaller distances yield higher confidence. This formulation allows the model to quantify uncertainty in extrapolating to unfamiliar LLM configurations."

    The confidence score is not an independent estimate of uncertainty; it is, by definition, a monotone decreasing transform of the vector-space distance from the new workload to previously logged subsets. Therefore a workload close to the training distribution receives high confidence automatically. Reporting c=0.99 for the LLAMA subset, which 'closely match[es] the distribution of the training data,' is a tautology of the formula rather than empirical evidence that confidence tracks error. The only genuinely extrapolative row in Table I, Qwen2-7B on Intel PVC, has c=0.67 while the actual error is 39.88% versus a 20.31% prediction, so the definitional confidence score does not calibrate outside the training distribution.

full rationale

The core hybrid idea is not circular: Algorithm 2 obtains (a,b,c) by fitting exponential throughput curves to benchmarked data, Algorithm 3 trains XGBoost to predict those fitted parameters from (ii,oo) features, and Algorithm 7 trains an error predictor on simulated-annealing logs with MAPE targets. These are separate supervised targets, so the central claim of predicting unobserved (ii,oo) configurations has independent content. However, two load-bearing components reduce by construction. First, Algorithm 5's database-lookup branch means any evaluation point whose (ii,oo) was already benchmarked is predicted by the exact curve fitted on that same pair; if such points are present in the test splits behind Figure 7, the low median error is partly in-sample. Second, Algorithm 8 defines confidence as inverse distance to training subsets, so high confidence for training-like workloads is guaranteed by the definition, and Table I's only cross-hardware case shows the confidence measure failing to flag a large error. There is no load-bearing self-citation chain or imported uniqueness theorem: references to the authors' prior ARISE work appear only in related work and are not used to justify the framework's validity. Overall, the framework has independent predictive machinery, but the evaluation and uncertainty claims are moderately weakened by these definitional reductions, giving a score of 4.

Assumptions & free parameters 3 free parameters · 3 assumptions · 0 invented entities

The central claim rests on a fitted three-parameter exponential curve, ML generalization from features to fitted parameters, and an unvalidated similarity-based confidence score. The exponential form is chosen post hoc from the data, the parameters are fitted per workload, and the confidence formula is introduced without calibration. The ML parameter predictor gives the central extrapolation claim some independent grounding, but the analytical model carries no first-principles content.

free parameters (3)
  • Exponential model parameters (a, b, c) per (ii, oo) configuration = Not reported globally; example from Fig. 2: a=1140.94, b=0.07, c=1239.44 for ii=4096, oo=256
    Fitted by nonlinear least squares in Algorithm 2 for each benchmarked workload pair, then used as training targets for XGBoost. The three fitted parameters absorb most of the throughput curve's shape.
  • Simulated annealing hyperparameters (initial temperature, cooling rate, max iterations) = Not reported
    Algorithm 6 depends on tau, alpha, and N, but the paper gives no values or sensitivity analysis, so the error predictor training is not reproducible.
  • XGBoost hyperparameters for the parameter predictor and the error predictor = Not reported
    Algorithm 3 and Algorithm 7 call XGBoost with no stated hyperparameters, which materially affects the reported errors.
assumptions (3)
  • domain assumption For a fixed (ii, oo) pair, LLM inference throughput as a function of batch size follows thpt = c - a * exp(-b * bb).
    This functional form is asserted in Algorithm 1 and Section II-A based on inspection of experimental results, not derived from hardware or workload properties. If the true curve is not exponential-saturating, the parameters and their ML predictions lose meaning.
  • domain assumption An XGBoost model trained on fitted parameters from observed (ii, oo) pairs generalizes to unobserved (ii, oo) pairs.
    Algorithm 3 assumes the mapping from input/output size features to fitted parameters is smooth enough for regression; the paper provides no analysis of extrapolation limits or model-family transfer.
  • ad hoc to paper Cosine distance between histograms of workload features is a valid proxy for prediction error.
    Algorithm 8 defines confidence as 1 / (1 + d_min) without calibration, and Table I shows the proxy fails when hardware differs, so this assumption is not independently supported.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Statistical Modeling and Uncertainty Estimation of LLM Inference Systems." pith.science (2026). https://pith.science/paper/QXG4QFRY

@misc{pith2026250509319,
  author       = {Pith},
  title        = {Pith review of: Statistical Modeling and Uncertainty Estimation of LLM Inference Systems},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/QXG4QFRY}},
  note         = {Machine review of arXiv:2505.09319}
}
read the original abstract

Large Language Model (LLM) inference systems present significant challenges in statistical performance characterization due to dynamic workload variations, diverse hardware architectures, and complex interactions between model size, batch processing, and throughput requirements. Accurate statistical characterization enables better workload scheduling, adaptive resource provisioning, and cost-aware inference optimization, making it crucial for improving efficiency in large-scale AI deployments. Traditional analytical models provide explainability but cannot cover the vast diversity of real-world workloads, making it impossible to benchmark every scenario in advance. Machine learning (ML) approaches effectively predict performance for non-benchmarked cases but struggle when extrapolating beyond their observed training space. To address these limitations for LLM inference systems, we propose an Analytical with Learning Augmentation (ALA) framework that bridges analytical modeling with \ml for robust statistical prediction and uncertainty estimation in LLM inference workloads. Our method employs an analytical throughput model with parameters estimated for benchmarked workloads, then extends to unobserved configurations using \ml predictions. We enhance this with simulated annealing to exploit subsets of the workload data point combinations and develop an error predictor. Finally, we quantify uncertainty based on vector space similarity between new and observed workloads to ensure robust generalization. Through extensive experimentation on diverse LLM inference workloads, we demonstrate that our framework achieves low median errors while maintaining adaptability to new inference scenarios.

Figures

Figures reproduced from arXiv: 2505.09319 by the authors.

Figure 1
Figure 1. ALA Framework Solution Overview Performance characteristic prediction: Finally, ALA uses unobserved workloads, for which statistical performance char￾acteristics are not initially known, together with the previously built error model on the simulated annealing logs to predict the analytical model’s characteristics and in turn predict the LLM inference statistical performance characteristics, including the confidence… view at source ↗
Figure 2
Figure 2. Exponential Models for Throughput in LLAMA [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Exponential Models for Throughput in LLAMA [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: Dataset Statistical Characteristics showing throughput variation with [PITH_FULL_IMAGE:figures/full_fig_p005_4.png]
Figure 6
Figure 6. Figure 6: Histogram of Errors for Different Training Sets [PITH_FULL_IMAGE:figures/full_fig_p006_6.png]
Figure 7
Figure 7. Figure 7: Comparison with Baseline Approaches 0 10 20 30 40 Median Percent Error Median Percent Error Distribution by Model Model Type Mistral-7B-v0.1 Meta-Llama-3-8B Llama-2-7b-hf Llama-2-70b-hf Mixtral-8x7B-v0.1 Qwen2-7B DeciLM-7B [PITH_FULL_IMAGE:figures/full_fig_p007_7.png]
Figure 8
Figure 8. Figure 8: Error distribution observed in the ANL dataset. [PITH_FULL_IMAGE:figures/full_fig_p007_8.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

17 extracted references · 13 canonical work pages

  1. [1]

    Language mod- els are few-shot learners,

    T. Brown, B. Mann, N. Ryder, M. Subbiah, J. D. Kaplan, P. Dhariwal, A. Neelakantan, P. Shyam, G. Sastry, A. Askell, et al., “Language mod- els are few-shot learners,” Advances in neural information processing systems, vol. 33, pp. 1877–1901, 2020

  2. [2]

    The llama 3 herd of models,

    A. Dubey et al. , “The llama 3 herd of models,” 2024

  3. [3]

    Lamda: Language models for dialog applications,

    R. Thoppilan, D. De Freitas, J. Hall, N. Shazeer, A. Kulshreshtha, H.- T. Cheng, A. Jin, T. Bos, L. Baker, Y . Du, et al. , “Lamda: Language models for dialog applications,” arXiv preprint arXiv:2201.08239, 2022

  4. [4]

    A survey of techniques for optimizing transformer inference,

    K. T. Chitty-Venkata, S. Mittal, M. Emani, V . Vishwanath, and A. K. Somani, “A survey of techniques for optimizing transformer inference,” Journal of Systems Architecture , p. 102990, 2023

  5. [5]

    A survey on efficient inference for large language models,

    Z. Zhou, X. Ning, K. Hong, T. Fu, J. Xu, S. Li, Y . Lou, L. Wang, Z. Yuan, X. Li, et al., “A survey on efficient inference for large language models,” arXiv preprint arXiv:2404.14294 , 2024

  6. [6]

    Inference optimization of foundation models on ai accelerators,

    Y . Park, K. Budhathoki, L. Chen, J. M. K ¨ubler, J. Huang, M. Klein- dessner, J. Huan, V . Cevher, Y . Wang, and G. Karypis, “Inference optimization of foundation models on ai accelerators,” in Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, pp. 6605–6615, 2024

  7. [7]

    Llm-inference- bench: Inference benchmarking of large language models on ai acceler- ators,

    K. T. Chitty-Venkata, S. Raskar, B. Kale, F. Ferdaus, A. Tanikanti, K. Raffenetti, V . Taylor, M. Emani, and V . Vishwanath, “Llm-inference- bench: Inference benchmarking of large language models on ai acceler- ators,” in SC24-W: Workshops of the International Conference for High Performance Computing, Networking, Storage and Analysis , pp. 1362– 1379, IEEE, 2024

  8. [8]

    Sarathi: Efficient llm inference by piggybacking decodes with chunked prefills,

    A. Agrawal, A. Panwar, J. Mohan, N. Kwatra, B. S. Gulavani, and R. Ramjee, “Sarathi: Efficient llm inference by piggybacking decodes with chunked prefills,” 2023

Show all 17 references
  1. [9]

    Vidur: A large-scale simulation frame- work for llm inference,

    A. Agrawal, N. Kedia, J. Mohan, A. Panwar, N. Kwatra, B. Gulavani, R. Ramjee, and A. Tumanov, “Vidur: A large-scale simulation frame- work for llm inference,” Proceedings of Machine Learning and Systems , vol. 6, pp. 351–366, 2024

  2. [10]

    Toward a holistic performance evaluation of large language models across diverse ai accel- erators,

    M. Emani, S. Foreman, V . Sastry, Z. Xie, S. Raskar, W. Arnold, R. Thakur, V . Vishwanath, M. E. Papka, S. Shanmugavelu, D. Gandhi, H. Zhao, D. Ma, K. Ranganath, R. Weisner, J. Chen, Y . Yang, N. Vas- silieva, B. C. Zhang, S. Howland, and A. Tsyplikhin, “Toward a holistic perf...

  3. [11]

    Evaluation of pre-training large language models on leadership-class supercomputers,

    J. Yin, S. Dash, J. Gounley, F. Wang, and G. Tourassi, “Evaluation of pre-training large language models on leadership-class supercomputers,” The Journal of Supercomputing , pp. 1–22, 06 2023

  4. [12]

    Comparative evaluation of deep learning workloads for leadership-class systems,

    J. Yin, A. Tsaris, S. Dash, R. Miller, F. Wang, and M. A. Shankar, “Comparative evaluation of deep learning workloads for leadership-class systems,” BenchCouncil Transactions on Benchmarks, Standards and Evaluations, vol. 1, no. 1, p. 100005, 2021

  5. [13]

    Daydream: Accurately estimating the efficacy of optimizations for DNN training,

    H. Zhu, A. Phanishayee, and G. Pekhimenko, “Daydream: Accurately estimating the efficacy of optimizations for DNN training,” in 2020 USENIX Annual Technical Conference (USENIX ATC 20) , pp. 337–352, USENIX Association, July 2020

  6. [14]

    Habitat: A Runtime- Based computational performance predictor for deep neural network training,

    G. X. Yu, Y . Gao, P. Golikov, and G. Pekhimenko, “Habitat: A Runtime- Based computational performance predictor for deep neural network training,” in 2021 USENIX Annual Technical Conference (USENIX ATC 21), pp. 503–521, USENIX Association, July 2021

  7. [15]

    Building a performance model for deep learning recommendation model training on gpus,

    Z. Lin, L. Feng, E. K. Ardestani, J. Lee, J. Lundell, C. Kim, A. Ke- jariwal, and J. D. Owens, “Building a performance model for deep learning recommendation model training on gpus,” in 2022 IEEE 29th International Conference on High Performance Computing, Data, and Analytics ...

  8. [16]

    Proteus: Simulating the performance of distributed dnn training,

    J. Duan, X. Li, P. Xu, X. Zhang, S. Yan, Y . Liang, and D. Lin, “Proteus: Simulating the performance of distributed dnn training,” 2023

  9. [17]

    Arise: Ai right sizing engine for ai workload configurations,

    R. T. Brill, B. Wassermann, E. Raichstein, and D. H. Lorenz, “Arise: Ai right sizing engine for ai workload configurations,” in Proceedings of the 17th ACM International Systems and Storage Conference , SYSTOR ’24, (New York, NY , USA), p. 198–199, Association for Computing Ma...

Pith tools

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