Papers for

data center operators

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

GreenDirector adds water and carbon impact to workload scheduling

GreenDirector: carbon- and water-aware workload placement for sustainable computing

Abstract: The rapid growth of data center electricity demand, accelerated by AI, makes carbon-only accounting an incomplete measure of computing's environmental impact: low-carbon electricity mixes are often water-intensive, and the resulting harm depends on local, seasonal scarcity rather than on the volume of water consumed. We propose the Environmental Score (ES), a unified, dimensionless index in $[0, 100]$ that jointly captures the carbon footprint and the spatial-temporal, scarcity-weighted water impact of the electricity a workload consumes. It combines real-time, cross-border electricity flow tracing with monthly AWARE2.0 water-scarcity characterization factors, weighting global greenhouse-gas emissions together with the local, seasonal severity of water stress. Building on it, we define the Green Score (GS), a scheduling metric proportional to the useful computational work delivered per unit of real environmental impact, which also accounts for data center power and hardware efficiency. We add both metrics as a green-affinity feature to the GreenDirector schedulers of two production federated infrastructures, the AI4EOSC scientific cloud and the DIRAC workload management system. In AI4EOSC, a cluster-filling experiment over four pan-European providers shows that greener sites are filled first without degrading scheduling latency or end-user experience. In DIRAC, a trace-driven simulation of 133,631 jobs and a preliminary production deployment for the KM3NeT community reduce carbon emissions and improve carbon efficiency by about 40\%, while making the carbon-water trade-off explicit when the lowest-carbon site also carries higher water stress. The results show that hydrological stress can be dynamically weighted into workload placement in live, multi-tenant systems

Fri 11 SeptDistributed, Parallel, and Cluster Computing
The gist
Data centers use lots of electricity, and while some electricity is low in carbon emissions, it can be heavy on water use, which can harm the environment depending on local water scarcity. The authors created an Environmental Score that measures both carbon emissions and water impact considering when and where electricity is used. They also made a Green Score that helps schedule computer jobs to get the most work done with the least environmental harm. They tested this system on real cloud and scientific computing setups, showing it can reduce carbon emissions and handle water usage concerns without slowing down the work.
Open 2609.12602v1

Distributed kernel training improves robust gradient learning rates

Generalization Analysis of Distributed Kernel-based Robust Gradient Descent Algorithms

Abstract: In this paper, we investigate the generalization performance of distributed gradient descent algorithms in a reproducing kernel Hilbert space under a robust loss function $l_σ$. By exploiting the spectral characterization of gradient descent together with the intrinsic properties of robust loss functions, we establish optimal learning rates for the distributed kernel-based robust gradient descent (DKRGD) algorithm with an appropriately chosen scale parameter $σ$. The proposed parameter choice of $σ$ simultaneously alleviates the saturation phenomenon and guarantees statistical robustness. A key technical contribution is a novel error analysis that provides substantially sharper bounds for products of operators, thereby significantly relaxing existing restrictions on the maximum number of local machines while retaining optimal learning rates. Finally, we develop a communication-efficient strategy that further improves the convergence performance of DKRGD.

Thu 10 SeptMachine Learning
The gist
Training machine learning models across multiple computers can be tricky, especially when the data has noise or errors. This paper studies a method that uses special math functions called kernels combined with a strong way to handle errors, making the training more reliable. The authors found a smarter way to set parameters so the learning is both fast and accurate. They also developed a new technique that cuts down the communication needed between computers, speeding up the whole learning process.
Open 2609.11712v1

LLM training jobs show varying tolerance to reduced GPU power

Characterizing Job Power Elasticity for Power-Flexible AI Training

Abstract: Large language model (LLM) training is among the fastest-growing sources of electricity demand in modern data centers, and power availability is a primary bottleneck to continued AI infrastructure growth. Making the power consumption of these workloads flexible could unlock additional power for AI growth, limit increases in electricity prices, and improve the utilization of existing grid infrastructure. However, to realize this flexibility, we must first understand how the performance of training workloads changes when GPU power is reduced. This paper presents the first systematic characterization of \emph{job power elasticity} (the sensitivity of throughput to power reductions) in LLM training. To quantify elasticity, we introduce the \emph{Power Flexibility Index (PFI)}, a normalized metric that quantifies the performance cost of power reductions and provides a control primitive for SLA-aware power flexibility. We collect data from 131 LLM training runs on H200 (plus 24 H200 validation runs and 34 matched H100 runs), including both dense and mixture-of-experts models, pretraining and fine-tuning tasks, and up to 32 GPUs. We find that LLM training jobs exhibit substantial but variable power elasticity, and we identify telemetry signals that predict PFI at runtime. Finally, we demonstrate that PFI-aware power allocation maximizes total tokens/second throughput under power constraints. Under a 30\% power reduction, PFI-aware power allocation recovers ~1.5k tokens/s per job, 63\% of the performance gap between an equal-weight allocation and an oracle with perfect information. Our results establish power elasticity as a measurable property of training jobs and provide a foundation for power-aware, grid-responsive AI infrastructure.

Thu 10 SeptArtificial Intelligence
The gist
Training large language models needs a lot of electricity, which can limit how much AI can grow. The authors studied how much reducing the GPU power affects the speed of training these models. They measured a new score called the Power Flexibility Index that shows how much performance is lost when power is cut. Using this score, it's possible to give out available power in a way that keeps training as fast as possible even with less electricity. This work helps data centers manage power better to support AI training.
Open 2609.11542v1

Optimal query strategies improve internet bottleneck detection

Optimal Non-Adaptive Vantage Point Selection

Abstract: We study the \emph{vantage point selection} problem, introduced by Ashvinkumar, Chowdhury, Gao, Goswami, Mitchell, and Polishchuk [WADS'25] to model the problem of estimating bottleneck capacities on the Internet. The input is a weighted undirected graph with unique shortest paths where every edge has a distinct unknown \emph{capacity}. When the algorithm \emph{queries} a vertex $v$, it reveals the minimum-capacity edge on the shortest path from $v$ to every other vertex reachable from $v$. The goal is to maximize the total number of revealed edges. The quality of an algorithm is measured by its competitive ratio against an optimal algorithm that knows all edge capacities a priori. We first consider the foundational single-query setting, where both the algorithm and the optimal algorithm are restricted to a single query. There is a trivial upper bound of $O(n)$ on the competitive ratio and the best known lower bound was $\tildeΩ(\sqrt{n})$. We provide an algorithm and matching lower bound (up to polylogarithmic factors) showing that the best possible competitive ratio is $\tildeΘ(n^{2/3})$. Furthermore, we extend our results to the general setting where the optimal algorithm is allowed $k$ queries and our algorithm is allowed $αk$ queries for $α\geq 1$. We present a randomized non-adaptive algorithm and matching lower bound (up to polylogarithmic factors) showing that the best possible expected competitive ratio for non-adaptive algorithms is the following surprisingly complex bound: $$ \tildeΘ\left( \min\left\{ \frac{n}{αk}, \max\left( \sqrt{\frac{n}α}, \frac{n^{2/3}}{αk^{1/3}} \right) \right\} \right). $$

Wed 9 SeptData Structures and Algorithms
The gist
This paper looks at how to best pick points in a network to learn about the weakest links, called bottlenecks, without knowing the network details upfront. The authors find the best way to make queries from selected points to reveal the most information about these bottlenecks. They show mathematically the limits of how well any method can do and provide algorithms that match these limits pretty closely. This helps in diagnosing network capacity problems more efficiently.
Open 2609.10267v1

Measuring sustainability and performance in hybrid computing systems

Measuring Sustainability in Multi-Scale High-Performance Computing

Abstract: The transition from traditional High Performance Computing (HPC) to the Computing Continuum emphasizes efficient resource management and sustainable practices across Multi-Scale hybrid architectures. This paper introduces a multidimensional metric framework to characterize these systems and guide deployment strategies for modern workloads. The framework combines Architectural Performance metrics (such as Throughput, Latency, Scalability), System Utilization, and key Sustainability and Accuracy indicators (such as Energy Efficiency and Power Consumption). Using a modular hybrid testbed, experiments reveal complex relationships among metrics, especially the trade-offs between accuracy and energy, and the efficiency of hybrid nodes. The guidelines help identify optimal operating points and lay the groundwork for improving orchestrators and schedulers (e.g., Kubernetes) to assign demanding applications, including AI and Quantum Computing, to suitable system modules, ensuring high performance and sustainability.

Tue 8 SeptDistributed, Parallel, and Cluster Computing
The gist
Modern computing uses different kinds of computers working together, which can be tricky to manage efficiently. This paper by the authors introduces a new way to measure how well these systems perform while saving energy and keeping accuracy. They tested their method on a hybrid system and found interesting trade-offs between accuracy and energy use. Their approach helps find the best balance for running demanding tasks like artificial intelligence or quantum computing. This can guide future software that decides where to run different tasks to save energy and improve speed.
Open 2609.08688v1

Online scheduling adapts to limited and delayed job size information

Better Late Than Never: Online Flow Time Scheduling with Online Estimates

Abstract: In the classical online flow-time scheduling problem on a single machine, jobs arrive over time and must be processed to minimize the total time they spend in the system: for over fifty years, we have known that SRPT is an optimal online algorithm. But this algorithm requires exactness in two different ways: (a) job sizes must be known exactly, and (b) they must be revealed as soon as the job arrives. Recent work relaxed each of these assumptions separately: there are algorithms based on knowing approximate sizes (given when the job arrives), or based on knowing (exact) sizes at some point before the remaining size gets too small. Nonetheless, prior to this work, there was no known approach to relax both assumptions simultaneously. In this work, we consider a model that demands much less: When we process a job, at some point in time between when we complete an $\varepsilon$-fraction and a $(1-\varepsilon)$-fraction of its unknown processing requirement, we are informed that the job is ``somewhere in the middle''. Finally, when the job has received its desired amount of processing, we are informed of its completion. No other information is shared about the job. We give an $O(1/\varepsilon^2)$-competitive algorithm for this model. Slightly more generally, we assume that an algorithm receives a $μ$-approximate estimate of each job's processing time at some time before we complete a $(1-\varepsilon)$-fraction of its processing. Our algorithm is $O(μ/\varepsilon)$-competitive, and we show that this is asymptotically optimal. It is a surprisingly natural variant of the multilevel feedback algorithm (MLF) and it is parameter-oblivious: it does not need to know $μ$ or $\varepsilon$ upfront. The core analytical contribution is to robustify the dual-fitting framework for this problem to handle jobs for which we have not yet received estimates.

Mon 7 SeptData Structures and Algorithms
The gist
Scheduling jobs on a single machine is easier when you know exactly how long each job will take and when they arrive. This paper studies what happens when you don’t know job sizes exactly and only learn partial information partway through processing. The authors present an algorithm that effectively manages jobs with limited and delayed size estimates, improving scheduling decisions despite uncertainty. Their approach adapts in real time without needing exact parameters beforehand.
Open 2609.07402v1

Agentic method speeds up graph minimum cut algorithms greatly

Agentic Algorithm Engineering: Improving Shared-Memory Exact Minimum Cuts

Abstract: The minimum cut problem for an undirected edge-weighted graph asks us to divide its set of nodes into two blocks while minimizing the weighted sum of the cut edges. Over the last years, we engineered a range of fast algorithms for this problem. Our fastest exact algorithm uses an inexact algorithm to obtain a better bound for the problem, reductions that depend on this bound, improved data structures and parallel contraction routines. It is available in the open-source package VieCut and, on real-world instances, outperformed the previously fastest solvers by a factor of up to 2.5 sequentially and up to 12.9 when run in parallel. We improve this algorithm using agentic algorithm engineering (AAE), a methodology that we introduce here, in which autonomous large language model agents run the algorithm engineering cycle on an existing code base: they form hypotheses about where running time is lost, implement them, benchmark the result on a fixed instance set and keep or discard the change. Even though we had already tuned our algorithm by hand extensively, the agent finds significant optimizations, in particular on the DIMACS core instances: factors of 1.28 (sequential) and 1.63 (32 threads) on real-world k-cores, and 6.26 and 127 on the DIMACS core instances.

Mon 7 SeptArtificial Intelligence
The gist
The minimum cut problem involves splitting a network's nodes into two groups to minimize the total weight of the edges cut between them. The authors built a very fast algorithm for this problem, using both exact and inexact methods together with clever data structures and parallel computations. They introduced a new approach called agentic algorithm engineering, where autonomous AI agents improve the code by testing ideas automatically. These agents found big improvements, speeding up the algorithm more than manual tuning had achieved before.
Open 2609.07204v1

High-bandwidth flash improves generative recommendation serving speed and lifespan

Enabling High-Bandwidth Flash for Generative Recommendation Serving with Write-Aware KV Cache Policy

Abstract: Generative recommendation (GR) systems increasingly leverage user-level KV cache reuse to avoid recomputing long user histories. However, the growing KV cache capacity and bandwidth requirements introduce new challenges for memory system. High-Bandwidth Flash (HBF) provides a promising solution by offering substantially higher capacity than HBM while approaching HBM-class read bandwidth, enabling larger scale KV cache retention and improved serving throughput. Yet conventional Least-Recently-Used (LRU) KV cache management tightly couples KV cache writes with cache misses, generating excessive write traffic that rapidly exhausts flash endurance. In this work, we evaluate a write-aware KV cache policy based on admission-controlled LRU-K for HBF-based GR serving. By filtering low-reuse users before cache admission, LRU-K decouples KV cache writes from misses and significantly reduces unnecessary writes. We develop an analytical model to characterize GR serving performance, KV cache write traffic, and HBF lifetime, and evaluate performance across diverse memory systems and GR workloads. Our results show that HBF-based systems achieve 3.8 to 4.7 times higher throughput than HBM-only systems. Moreover, LRU-K extends HBF lifetime from about one year under conventional LRU to over six years with a moderate K=10, while maintaining comparable or even slightly improved throughput. These results highlight the importance of write aware KV cache policy for sustainable HBF-based GR serving.

Mon 7 SeptHardware Architecture
The gist
Generative recommendation systems remember past user behavior to make better suggestions, but storing all this data needs a lot of fast memory, which can be costly and short-lived. The authors show that using a special type of flash memory with a smarter way to store data can keep the system running much faster and for many more years. Their new method avoids unnecessary writing to the memory, keeping the memory healthy longer while still making recommendations quickly.
Open 2609.07175v1