mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 12:37:25 +01:00
31 lines
978 B
Plaintext
31 lines
978 B
Plaintext
|
SHORT L3 cache bandwidth in MBytes/s
|
||
|
|
||
|
EVENTSET
|
||
|
PMC0 INST_RETIRED
|
||
|
PMC1 CPU_CYCLES
|
||
|
PMC2 L2D_CACHE_REFILL
|
||
|
PMC3 L2D_CACHE_WB
|
||
|
|
||
|
|
||
|
METRICS
|
||
|
Runtime (RDTSC) [s] time
|
||
|
CPI PMC1/PMC0
|
||
|
L3 read bandwidth [MBytes/s] 1.0E-06*(PMC2)*64.0/time
|
||
|
L3 read data volume [GBytes] 1.0E-09*(PMC2)*64.0
|
||
|
L3 write bandwidth [MBytes/s] 1.0E-06*(PMC3)*64.0/time
|
||
|
L3 write data volume [GBytes] 1.0E-09*(PMC3)*64.0
|
||
|
L3 bandwidth [MBytes/s] 1.0E-06*(PMC2+PMC3)*64.0/time
|
||
|
L3 data volume [GBytes] 1.0E-09*(PMC2+PMC3)*64.0
|
||
|
|
||
|
LONG
|
||
|
Formulas:
|
||
|
L3 read bandwidth [MBytes/s] = 1.0E-06*(L2D_CACHE_REFILL)*64.0/runtime
|
||
|
L3 read data volume [GBytes] = 1.0E-09*(L2D_CACHE_REFILL)*64.0
|
||
|
L3 write bandwidth [MBytes/s] = 1.0E-06*(L2D_CACHE_WB)*64.0/runtime
|
||
|
L3 write data volume [GBytes] = 1.0E-09*(L2D_CACHE_WB)*64.0
|
||
|
L3 bandwidth [MBytes/s] = 1.0E-06*(L2D_CACHE_REFILL+L2D_CACHE_WB)*64.0/runtime
|
||
|
L3 data volume [GBytes] = 1.0E-09*(L2D_CACHE_REFILL+L2D_CACHE_WB)*64.0
|
||
|
-
|
||
|
Profiling group to measure traffic between L2 and L3 cache.
|
||
|
|