mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 12:37:25 +01:00
31 lines
719 B
Plaintext
31 lines
719 B
Plaintext
|
SHORT Power and Energy consumption
|
||
|
|
||
|
EVENTSET
|
||
|
FIXC0 INSTR_RETIRED_ANY
|
||
|
FIXC1 CPU_CLK_UNHALTED_CORE
|
||
|
FIXC2 CPU_CLK_UNHALTED_REF
|
||
|
PWR0 PWR_PKG_ENERGY
|
||
|
PWR3 PWR_DRAM_ENERGY
|
||
|
UBOXFIX UNCORE_CLOCK
|
||
|
|
||
|
METRICS
|
||
|
Runtime (RDTSC) [s] time
|
||
|
Runtime unhalted [s] FIXC1*inverseClock
|
||
|
Clock [MHz] 1.E-06*(FIXC1/FIXC2)/inverseClock
|
||
|
Uncore Clock [MHz] 1.E-06*UBOXFIX/time
|
||
|
CPI FIXC1/FIXC0
|
||
|
Energy [J] PWR0
|
||
|
Power [W] PWR0/time
|
||
|
Energy DRAM [J] PWR3
|
||
|
Power DRAM [W] PWR3/time
|
||
|
|
||
|
LONG
|
||
|
Formulas:
|
||
|
Power = PWR_PKG_ENERGY / time
|
||
|
Power DRAM = PWR_DRAM_ENERGY / time
|
||
|
Uncore Clock [MHz] = 1.E-06 * UNCORE_CLOCK / time
|
||
|
-
|
||
|
Skylake implements the RAPL interface. This interface enables to
|
||
|
monitor the consumed energy on the package (socket) and DRAM level.
|
||
|
|