Measuring the power of a GPU: NVML, DCGM and the sampling errors that invalidate your watts
Contents
Notation: amounts in euros (N €), decimals with a point. The dollar symbol is not used (on this site it is a formula delimiter).
TL;DR
A GPU power sensor does not return what almost everyone believes. The NVML documentation is explicit: on Ampere except GA100, and on later architectures including H100, nvmlDeviceGetPowerUsage returns power averaged over a one-second interval, not instantaneous power. The University of Oxford study presented at SC24, covering more than 70 GPUs across 25 models checked against an external 1 mΩ meter, adds the fact that breaks most published measurements: on the A100 and H100 the sensor only samples 25 % of the time (a 25 ms window within a 101 ms period), so during the remaining 75 % the GPU may be consuming something radically different. Integrating power naively over nine real benchmarks, the mean error was 39.27 %; applying good practice brought it down to 4.89 %. The operational consequence is short: if the hardware is Volta or later, use the accumulated energy counter (nvmlDeviceGetTotalEnergyConsumption, in millijoules) and subtract, rather than integrating samples. And the GPU counter is not the bill: on measured 8× H100 nodes, the node reaches 8.4 kW against 5.6 kW of summed GPU TDP, node idle is 1.8 kW, and with an average PUE of 1.54 the NVML watts are of the order of 43 % of the watts the utility bills.
What the hardware exposes
NVML: power
nvmlDeviceGetPowerUsage(device, unsigned int* power) returns milliwatts for the GPU and its associated circuitry, for example the memory. It has been supported since Fermi. The note in the official documentation is the part almost nobody quotes (NVML Device Queries):
On Fermi and Kepler the reading is accurate to ±5 % of current consumption. On Ampere (except GA100) or later, the API returns power averaged over a 1 s interval. On GA100 and earlier architectures instantaneous power is returned.
In other words, on an H100 or an L40S the usual call already delivers a one-second moving average. Anyone sampling it at 1 Hz and integrating is applying a second filter on top of an already filtered signal, without declaring it. To disambiguate, NVML exposes two separate fields accessible via nvmlDeviceGetFieldValues: NVML_FI_DEV_POWER_AVERAGE and NVML_FI_DEV_POWER_INSTANT, with command-line equivalents (nvidia-smi --query-gpu=power.draw.average and power.draw.instant).
NVML: the energy counter
nvmlDeviceGetTotalEnergyConsumption returns accumulated energy in millijoules since the last driver reload, supported on Volta or later. It is a 64-bit integer, so overflow is not a practical problem: an H100 at 700 W consumes of the order of 6.1·10¹⁰ J per year against a counter range of 1.8·10¹⁶ J. The only event that resets it is a driver reload or a system restart, and that does need watching: a modprobe -r nvidia halfway through a campaign produces a negative delta.
NVIDIA does not document the internal time resolution of the counter, its accumulation mechanism or its accuracy, and I have found no peer-reviewed work validating it against an external meter. The recommendation to use it, which the rest of this sheet rests on, is a structural argument (it removes quadrature error and aliasing error), not a published empirical validation.
NVML: power limits
| Function | Unit | Semantics |
|---|---|---|
nvmlDeviceGetPowerManagementLimit | mW | Currently configured limit |
nvmlDeviceGetPowerManagementLimitConstraints | mW | Legal minimum and maximum range |
nvmlDeviceGetPowerManagementDefaultLimit | mW | Limit the card boots with |
nvmlDeviceGetEnforcedPowerLimit | mW | Effective limit after considering all limiters, including the out-of-band interface |
For an auditable measurement you have to record EnforcedPowerLimit, not PowerManagementLimit: the BMC may be imposing an out-of-band ceiling that the latter does not reflect, and two apparently identical nodes may be operating at different ceilings.
DCGM: the equivalent fields
| Field | ID | Unit | Type in the exporter |
|---|---|---|---|
DCGM_FI_DEV_POWER_USAGE | 155 | watts in floating point | gauge |
DCGM_FI_DEV_TOTAL_ENERGY_CONSUMPTION | 156 | accumulated millijoules | counter |
DCGM_FI_DEV_POWER_MGMT_LIMIT | 160 | mW | gauge |
DCGM_FI_DEV_ENFORCED_POWER_LIMIT | 164 | mW | gauge |
Both energy fields are active in the default counter file of dcgm-exporter. The audit conclusion is direct: a standard Prometheus panel integrating DCGM_FI_DEV_POWER_USAGE is integrating a gauge that is already a one-second average of the sensor, sampled at the exporter’s collect-interval. For energy per token the correct metric is counter 156 with increase().
The real accuracy of the sensor
The reference is the work of Yang, Adámek and Armour (University of Oxford), published at SC24 and available as arXiv:2312.02741: more than 70 GPUs across 25 models, including 10 H100s and 10 A100s, checked against an external meter with a 1 mΩ shunt, a 12-bit ADC and internal sampling at 34 kHz.
Update period and averaging window
| GPU or architecture | Update period | Averaging window |
|---|---|---|
| Kepler and Maxwell | 10-50 Hz | logarithmic growth, ~200 ms |
| Volta (V100) | 20 ms | 10 ms |
| Turing | 100 ms | 100 ms |
| A100 (GA100) | 101 ms | 25 ms |
| Non-GA100 Ampere and Ada, driver earlier than March 2023 | 100 ms | 1 s |
| Non-GA100 Ampere and Ada, driver 530 | 100 ms | 100 ms |
| H100 | 100 ms | 25 ms with .instant; 1 s with .average and with the default field |
| GH200 | 100 ms | 20 ms on the GPU, 10 ms on the Grace CPU |
Two readings of this table. The first: the driver is an experimental variable, not an infrastructure detail; the averaging window changed between drivers earlier than 530, driver 530, and the later ones. Any measurement meant to be compared over time has to record the driver version.
The second is the central finding of the paper. On the A100 and H100 the 25 ms window sits inside a 101 ms period, which gives a sensor duty cycle close to 25 %. The sensor does not average the full interval: it averages a quarter of it and the system presents the result as if it described the whole interval. In the words of the work itself, during the other 75 % of the time the GPU may be consuming radically different power and nvidia-smi never notices.
The steady-state error
The paper also quantifies the claim in the nvidia-smi documentation, which spoke of an accuracy of ±5 watts: the real error is proportional, ±5 %, not absolute. On a GPU capable of consuming 700 W that is ±35 W of over- or underestimation. The errors measured against the external meter, after correcting the time offset, were −4.70 % and −4.53 % on the RTX 3090 and −5.43 % on the A100, and the residue is attributed to the tolerance of the card’s own physical shunt, which no software can correct.
The response to transients
Four distinct behaviours were observed in the 10 % to 90 % rise time: an almost instantaneous real rise with the reading following on the next tick and a delay of 0 to 100 ms; a real rise of several hundred milliseconds with the reading still updating on the next tick; linear growth over a second, which corresponds to power.draw.average; and logarithmic growth over 200 ms, only on Kepler and Maxwell. Out of this comes the most uncomfortable warning in the work: when running a short program, the measured power probably corresponds to the activity before the program.
The two ways of obtaining energy
The first is to integrate samples, which is what any poller does:
$$E \approx \sum_i P(t_i) \cdot \Delta t$$It accumulates five sources of error: the ±5 % of the sensor, quadrature error from the finite step, aliasing if the load has spectral content above half the sampling frequency, the fact that each sample is already a moving average, and the jitter of 0 to 100 ms between the host clock and the sensor tick.
The second is to subtract the counter:
$$E = \text{counter}(t_1) - \text{counter}(t_0)$$Two calls and a subtraction. It removes quadrature, aliasing and time misalignment; the ±5 % of the sensor remains.
Why 1 Hz destroys a 200 ms inference
With sampling at 1 Hz, the sampling theorem only allows components below 0.5 Hz to be reconstructed, while a 200 ms pulse has content in the region of 5 Hz. The expected number of samples inside the event is 0.2, so with probability 0.8 none falls inside it: the result is not noisy, it is undefined.
Even sampling at the maximum useful rate, which on the A100 and H100 is about 10 Hz given the 101 ms period, a 200 ms inference produces one or two distinct sensor updates, and each has observed only 25 ms of real activity: effective coverage is around 25 % of the event. And because of the fourth transient behaviour in the previous section, the reading obtained during those 200 ms may describe what was happening before the kernel was launched.
Aliasing with periodic loads
The paper observes the phenomenon directly on the A100: with a square wave of period slightly different from 100 ms, the reading fluctuates between high and low values with a clear beat. An inference server with periodic arrivals, health checks, fixed-size batches or a scheduler tick is exactly that pathological case.
When only instantaneous power is available, the measured good practice from the Oxford work consists of running 32 consecutive iterations or a minimum of 5 s, inserting 8 evenly spaced controlled delays if the window is smaller than the period, repeating over 4 separate trials with a random delay between them, and shifting the series in post-processing to synchronise it with the real activity. Over nine real benchmarks that took the mean error from 39.27 % to 4.89 %.
What the GPU counter does not measure
The scope declared by NVML is the GPU and its associated circuitry: the SXM module or the PCIe card, with its HBM and its regulators. Left out are the CPU, host DRAM, NVSwitch, network cards, storage, fans and power supply losses.
The measured node figures come from the empirical calibration work on 8× H100 SXM5 nodes (arXiv:2506.14551):
| Quantity | Value |
|---|---|
| Nominal node TDP declared by the manufacturer | 10.2 kW |
| Node power at idle | 1.8 kW |
| Maximum measured under saturating load | 8.4 kW |
| Peak on real production loads | never above 76 % of TDP |
Two conversion factors come out of that, both my own estimates from those figures: 8 × 700 W is 5.6 kW of GPU against 8.4 kW of node, that is, the GPU is of the order of 67 % of node power and the GPU-to-node factor is around 1.50×. Chaining that with an industry average PUE of 1.54 (Uptime Institute, 2025), the total factor from the NVML counter to the utility feed is around 2.3×; with a PUE of 1.1 it drops to 1.65×. Put in the form that matters to whoever signs the bill: the watts NVML reports are roughly 43 % of the watts the utility bills in an average datacenter.
As a complementary reference, an 80 PLUS Titanium supply at 230 V is 96 % efficient at 50 % load and 91 % at 100 %, so supply losses add between 4 % and 9 % that is already included if you measure at the socket.
The tax of keeping a context open
A GPU serving a loaded model with no traffic does not consume its nominal idle. Measurements over 335,267 production samples from 14 H100s across 18 days, plus controlled experiments, give this table:
| GPU | Idle without a CUDA context | Idle with a CUDA context | Extra cost | Percentage of TDP |
|---|---|---|---|---|
| H100 | 71.8 W | 121.7 W | +49.9 W | 7.1 % |
| A100 | 53.7 W | 80.0 W | +26.3 W | 8.8 % |
| L40S | 35.6 W | 102.1 W | +66.4 W | 19.0 % |
The result that changes the mental model: more than 98 % of that extra cost is produced by the open CUDA context, independently of the memory occupied. Varying allocated VRAM between 0 and 72 GB moves power by less than 1 W. The size of the loaded model does not cost watts; keeping the context open does.
That cost is not marginal on a real platform. Over 11,791 long-running jobs, the measured split was 24 % of the time and 7 % of the energy in deep idle, 15 % of the time and 10 % of the energy idle with an active context, and 61 % of the time with 83 % of the energy in execution. On serving loads, GPUs can spend 48 % of their energy in low-activity periods.
CPU and DRAM: RAPL
To close the node you have to measure what is not GPU, and there the interface is RAPL through the kernel powercap framework, at /sys/devices/virtual/powercap/intel-rapl/. The hierarchy exposes intel-rapl:N as the socket and intel-rapl:N:M as subzones (core, uncore, dram), plus the psys domain for the full SoC since Skylake.
| File | Content |
|---|---|
energy_uj | Energy counter in microjoules; writing “0” resets it if the counter supports it |
max_energy_range_uj | Counter range, that is, the overflow point |
power_uw | Current power in microwatts |
name | Zone name |
The figures that condition its use come from the characterisation published in ACM TOMPECS: an update roughly every 1 ms, with jitter; an energy quantum of 61 µJ on Haswell and Skylake, 15.3 µJ on Sandy Bridge; and counter overflow in 52 minutes on a Haswell at 84 W, which forces polling at a far shorter period and detecting the wrap with max_energy_range_uj. There is also a thermal drift that is rarely declared: package power for the same load grows between 10 % and 12 % between 37 °C and 74 °C on Haswell. Warming up beforehand is not optional.
Access, on the other hand, is no longer free. The PLATYPUS attack (IEEE S&P 2021) demonstrated a purely software power side channel through RAPL, with CVE-2020-8694 and CVE-2020-8695 attached. The Linux mitigation arrived in commit 949dd0104c49, included in 5.10.0-rc4, which changed the default permissions so that only root can read energy_uj. The microcode mitigation associated with SGX goes further and introduces random noise into the reported energy and changes the reporting frequency: on machines with that mitigation active, RAPL readings are deliberately degraded. Measuring CPU and DRAM from a container therefore requires root, a udev rule relaxing the permissions, or a privileged daemon.
The software stack
| Tool | Source of the GPU figure | Counter or power | Default interval | Overhead |
|---|---|---|---|---|
| Zeus | NVML | Counter if the architecture is Volta or later; polling otherwise | Delimited by windows | Less than 10 ms per call |
| dcgm-exporter | NVML via DCGM | Both fields available | collect-interval = 30,000 ms | 5-10 W extra on the server’s IPMI reading |
| CodeCarbon | NVML | Counter | measure_power_secs = 15 s | 5.38 % to 46.75 % of time at 1 kHz |
| Scaphandre | No GPU support; RAPL | energy_uj counter | Not documented | 3.81 % to 28.38 % at 1 kHz |
| Kepler | RAPL and IPMI; GPU only as an experimental option | Hardware counters | — | — |
Four details that change the choice:
- Zeus decides in code with
nvmlDeviceGetArchitectureand uses the accumulated counter on Volta or later, with a nestable window API (begin_window/end_window). It is the reference implementation of what this sheet recommends. Its NSDI'23 paper also documents energy reductions of 23.8 % to 75.7 % from choosing batch size and power limit well, and of 3.0 % to 31.5 % from touching only the limit, with five seconds of profiling per point enough for stable results. - Kepler has removed eBPF. The CNCF announcement of June 2026 describes the redesign towards reading
/procand/sys, motivated by theCAP_BPFandCAP_SYSADMINpermissions that blocked deployments, and by the loss of short-lived processes that underestimated the footprint. The new node metric closely follows the IPMI pattern and removes the spurious multi-kilowatt spikes of the previous version. For GPUs it remains an experimental option: today it is not the tool for measuring Wh/token on an accelerator. - CodeCarbon uses the NVML counter, which is correct, but its RAM estimate is a heuristic of 5 W per module derived from the total gigabytes, and the code itself acknowledges it.
- DCGM delivers profiling metrics at 1 Hz by default, and warns that collecting at higher frequencies returns zeros because it groups metrics internally.
On the cost of measuring, the empirical overhead study of RAPL-based tools, all forced to 1 kHz, leaves a clear ordering:
| Tool | Time overhead |
|---|---|
| CodeCarbon | 5.38 % to 46.75 % |
| Scaphandre | 3.81 % to 28.38 % |
| Turbostat | 2.73 % to 14.37 % |
| PowerJoular | 1.67 % to 8.88 % |
| perf | −1.00 % to 4.26 % |
| RAPL read in user space | −0.70 % to 2.93 % |
| RAPL read in kernel space | −0.17 % to 0.99 % |
The underlying difference is that a system call costs of the order of 1.36·10⁻³ ms and an rdmsr instruction between 2.3·10⁻⁴ and 5.6·10⁻⁴ ms, an order of magnitude less. The authors recommend matching the granularity to the phenomenon being measured instead of raising the default frequency, and limiting polling to the necessary domains.
Procedure for making a Wh/token auditable
- Fix and record the electrical state. Note
EnforcedPowerLimit, the default limit and the driver version; lock clocks or the power ceiling if the experiment requires it. - Warm up to a stable temperature. RAPL thermal drift is 10 % to 12 % between 37 °C and 74 °C, and the
power.draw.averagetransient takes up to a second to settle. - Measure the idle baseline twice: without a CUDA context and with the model loaded. They are two different values and both are needed.
- Use windows of at least 5 s or 32 consecutive iterations.
- Repeat over 4 separate trials with a random delay, and add 8 evenly spaced delays if you are integrating instantaneous power with a window smaller than the period.
- Prefer the accumulated counter whenever the architecture is Volta or later, watching for driver reloads.
- Report dispersion. The Oxford paper itself publishes the mean and standard deviation of the error; without an interval, a Wh/token figure is not auditable.
- Declare the measurement boundary: GPU, node or utility feed. Without that label, two figures from the same facility differ by a factor of 2.3 with nobody knowing why.
Subtracting idle, or not
There is no consensus, and the honest approach is to treat it as a declared decision. In production the GPU is parked with the model loaded, and that consumption shows up on the bill: subtracting it erases a real cost. To compare the marginal efficiency of two models or two kernels, by contrast, subtracting it isolates the variable. The workable way out is to report both figures with labels: gross Wh/token, which includes idle and corresponds to the bill, and marginal Wh/token, comparable between models. What does not work is mixing them in the same table without distinguishing them.
One estimation trap remains alive in many spreadsheets: multiplying TDP by time overestimates real energy by up to 4.1 times, according to the ML.ENERGY Benchmark.
Power capping: what it costs and what it saves
| Configuration | Energy saving | Performance loss |
|---|---|---|
| V100 at 200 W against 300 W (67 % of TDP), BERT training | ~15 % | barely any degradation |
| V100 at 200 W, set of workloads | 10-20 % | less than 5 % |
| V100 at 100 W (33 % of TDP) | 40-60 % | 30-40 % |
| A100 at 175 W against 400 W (44 % of TDP), LLaMA 65B inference | 22-24 % | 5-8 % |
The asymmetry between phases explains the result. The Microsoft measurement at ASPLOS'24 documents that the prompt phase is short and reaches or exceeds TDP, while the token generation phase is longer and consumes less: the power ceiling penalises TTFT far more than TPOT. In their production cluster, inference uses 79 % of peak power against 97 % for training, and their measurements show that up to 20 % of power can be recovered with less than a 7 % performance loss.
The published sweep from 200 W to 700 W on the H100 and H200 adds the nuance of where the knee is: between 500 W and 700 W each 100 W step only contributes around 10 % of performance on compute-bound loads, while the H100 holds peak memory bandwidth even at 200 W. The most stable operating zones identified are 400 W on the H100 and 500 W on the H200. That the memory subsystem is protected against the trim is the physical reason why the decode phase of an LLM, which is memory-bound, loses so little performance under a power ceiling.
Two warnings about those figures: the H100/H200 sweep was measured with nvidia-smi polling every 10 s, exactly the problem described above, although on long steady loads the bias averages out; and there is no publication isolating the effect of memory clock locking on Wh/token in LLM inference, so any concrete figure on that point has to be your own measurement.
Reference figures
| GPU | TDP |
|---|---|
| H100 SXM | up to 700 W, configurable |
| H100 NVL | 350-400 W, configurable |
| A100 80GB SXM | 400 W |
| A100 80GB PCIe | 300 W |
| RTX 5090 | 575 W, with a recommended 1000 W supply |
| HGX node of 8× H100 SXM | 10.2 kW nominal |
Average power measured in inference: on an HPC cluster with vLLM on A100, the aggregate power of the GPU set ranged between 999 W and 2,983 W depending on model and parallelism, with Nemotron 70B on 8× A100 at 2,983 W, about 373 W per GPU, around 93 % of TDP.
Energy per token, with the warning that published figures measure different boundaries and cannot be mixed without normalising by GPU count and output tokens:
| Source | Figure |
|---|---|
| TokenPowerBench, H100 94 GB | 40 J per token on a standard load, more than 60 J per token in high-throughput configurations |
| TokenPowerBench, batch effect | −25 % of energy per token between batch 32 and 256 on a 70B model |
| TokenPowerBench, context effect | from 2K to 10K tokens of context on Llama 3 70B: energy ×3 |
| TokenPowerBench, quantisation effect | Llama 3 405B in FP8 against FP16: −30 % of energy per token |
| TokenPowerBench, engine effect | TensorRT-LLM and vLLM against the Transformers engine: −25 % to −40 % |
| Per-prompt measurement in batch | 0.0074-0.0289 Wh on 7B to 14B models; 0.0835-0.6912 Wh on 70B to 405B; single unbatched requests, between 10 and 100 times more expensive |
Cross-links from the energy track
- C2 — Energy per token: methodology and the electricity market: what to do with the joule once it is measured properly, and how the electricity price multiplies it.
- C3 — Measuring energy in production: Kepler, DCGM and the practical stack: the continuous deployment of the stack whose metrology this sheet documents.
- C3 — Energy benchmarking: frameworks, metrics and the state of the art: the full catalogue of tools and their metrics.
- C4 — MLPerf Power: the certified alternative, measuring at the wall with an external analyser instead of the card’s sensor.
- C6 — From watt to carbon: PUE, grid and grams of CO₂: the chain that turns the measured watt into emissions and into euros.
- C7 — Energy efficiency levers: the quantified catalogue where the power ceiling of this sheet is just one more lever.
See also
- GPU observability for LLM inference: DCGM and vLLM metrics — the same agent seen from operations, with the metrics that watch health as well as consumption.
- The reproducible harness: cost, performance and energy in a single auditable experiment — where this procedure fits inside the bench that measures all three axes at once.
- Cooling the AI datacenter (1/4): the thermal challenge — what happens to those watts after they turn entirely into heat.
Sources
- NVIDIA, NVML API Reference, Device Queries — https://docs.nvidia.com/deploy/nvml-api/group__nvmlDeviceQueries.html
- NVIDIA, DCGM Library API, Field Identifiers — https://docs.nvidia.com/datacenter/dcgm/3.1/dcgm-api/dcgm-api-field-ids.html
- NVIDIA, DCGM Feature Overview — https://docs.nvidia.com/datacenter/dcgm/latest/user-guide/feature-overview.html
- NVIDIA, dcgm-exporter — https://github.com/NVIDIA/dcgm-exporter
- NVIDIA, H100 Tensor Core GPU, especificaciones — https://www.nvidia.com/en-us/data-center/h100/
- NVIDIA, A100 Tensor Core GPU, especificaciones — https://www.nvidia.com/en-us/data-center/a100/
- NVIDIA, GeForce RTX 5090, especificaciones — https://www.nvidia.com/en-us/geforce/graphics-cards/50-series/rtx-5090/
- Yang, Adámek y Armour (Oxford), Part-time Power Measurements: nvidia-smi’s Lack of Attention / SC24 — https://arxiv.org/html/2312.02741v3
- Yang, GPU_Power_Benchmark, microbenchmark del trabajo anterior — https://github.com/JimZeyuYang/GPU_Power_Benchmark
- ML.ENERGY, Measuring GPU Energy: Best Practices — https://ml.energy/blog/energy/measurement/measuring-gpu-energy-best-practices/
- You et al., Zeus: Understanding and Optimizing GPU Energy Consumption of DNN Training, NSDI'23 — https://www.usenix.org/system/files/nsdi23-you.pdf
- Zeus, Measuring Energy — https://ml.energy/zeus/measure/
- ML.ENERGY, The ML.ENERGY Benchmark — https://arxiv.org/html/2505.06371v1
- CNCF, Kepler, re-architected: improved power accuracy (junio 2026) — https://www.cncf.io/blog/2026/06/30/kepler-re-architected-improved-power-accuracy-and-a-community-call-to-action/
- CodeCarbon, How Power Estimation Works — https://docs.codecarbon.io/latest/explanation/power-estimation/
- Hubblo, Scaphandre: cálculo del consumo por proceso — https://github.com/hubblo-org/scaphandre/blob/main/docs_src/explanations/how-scaph-computes-per-process-power-consumption.md
- Linux Kernel, Power Capping Framework (powercap sysfs) — https://docs.kernel.org/power/powercap/powercap.html
- Intel, Running Average Power Limit Energy Reporting, INTEL-SA-00389 — https://www.intel.com/content/www/us/en/developer/articles/technical/software-security-guidance/advisory-guidance/running-average-power-limit-energy-reporting.html
- Lipp et al., PLATYPUS: With Great Power comes Great Leakage, IEEE S&P 2021 — https://platypusattack.com/
- Khan et al., RAPL in Action: Experiences in Using RAPL for Power Measurements, ACM TOMPECS — https://www.devsustainability.com/p/paper-notes-rapl-in-action
- What Is the Cost of Energy Monitoring? An Empirical Study on the Overhead of RAPL-Based Tools — https://arxiv.org/html/2604.26815v1
- Patel et al. (Microsoft), Characterizing Power Management Opportunities for LLMs in the Cloud, ASPLOS'24 — https://www.microsoft.com/en-us/research/wp-content/uploads/2024/03/GPU_Power_ASPLOS_24.pdf
- MIT Lincoln Laboratory, Sustainable Supercomputing for AI: GPU Power Capping at HPC Scale — https://arxiv.org/html/2402.18593
- Architectural Trade-offs in the Energy-Efficient Era: power-capping NVIDIA H100 and H200 — https://arxiv.org/html/2604.11391v1
- Empirically-Calibrated H100 Node Power Models for Datacenter Energy Analysis — https://arxiv.org/pdf/2506.14551
- The Model Parking Tax: Quantifying the Hidden Energy Cost of Always-On GPU Model Deployment — https://arxiv.org/html/2605.23918
- The Energy Cost of Execution-Idle in GPU Clusters — https://arxiv.org/html/2604.04745
- TokenPowerBench: Benchmarking the Power Consumption of LLM Inference — https://arxiv.org/pdf/2512.03024
- From Prompts to Power: Measuring the Energy Footprint of LLM Inference — https://arxiv.org/html/2511.05597
- Serving LLMs in HPC Clusters — https://arxiv.org/abs/2507.00418
- Uptime Institute, Global Data Center Survey 2025 — https://datacenter.uptimeinstitute.com/rs/711-RIA-145/images/2025.Annual.Survey.Report.pdf