|
I can get euro/token from pod price. How do I get joules or Wh per token for an energy report? |
Answered by
iacker
Jul 10, 2026
Replies: 1 comment
|
Use DCGM_FI_DEV_POWER_USAGE (watts) integrated over the request window to get joules, divided by tokens generated. Practically: rate the power series, multiply by interval to get Wh, and divide by the tokens counter over the same window. Attribute idle draw separately so you can report both active energy/token and the amortized figure including idle — the gap is your efficiency headroom, same idea as the utilization tax on cost. |
0 replies
Answer selected by
iacker
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use DCGM_FI_DEV_POWER_USAGE (watts) integrated over the request window to get joules, divided by tokens generated. Practically: rate the power series, multiply by interval to get Wh, and divide by the tokens counter over the same window. Attribute idle draw separately so you can report both active energy/token and the amortized figure including idle — the gap is your efficiency headroom, same idea as the utilization tax on cost.