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