mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 12:37:25 +01:00
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
SHORT Double Precision MFLOP/s
|
|
|
|
EVENTSET
|
|
FIXC0 INSTR_RETIRED_ANY
|
|
FIXC1 CPU_CLK_UNHALTED_CORE
|
|
FIXC2 CPU_CLK_UNHALTED_REF
|
|
PMC0 FP_COMP_OPS_EXE_SSE_FP_PACKED
|
|
PMC1 FP_COMP_OPS_EXE_SSE_FP_SCALAR
|
|
PMC2 FP_COMP_OPS_EXE_SSE_SINGLE_PRECISION
|
|
PMC3 FP_COMP_OPS_EXE_SSE_DOUBLE_PRECISION
|
|
|
|
METRICS
|
|
Runtime (RDTSC) [s] time
|
|
Runtime unhalted [s] FIXC1*inverseClock
|
|
Clock [MHz] 1.E-06*(FIXC1/FIXC2)/inverseClock
|
|
CPI FIXC1/FIXC0
|
|
DP [MFLOP/s] 1.0E-06*(PMC0*2.0+PMC1)/time
|
|
Packed [MUOPS/s] 1.0E-06*PMC0/time
|
|
Scalar [MUOPS/s] 1.0E-06*PMC1/time
|
|
SP [MUOPS/s] 1.0E-06*PMC2/time
|
|
DP [MUOPS/s] 1.0E-06*PMC3/time
|
|
|
|
LONG
|
|
Formulas:
|
|
DP [MFLOP/s] = 1.0E-06*(FP_COMP_OPS_EXE_SSE_FP_PACKED*2+FP_COMP_OPS_EXE_SSE_FP_SCALAR)/runtime
|
|
Packed [MUOPS/s] = 1.0E-06*FP_COMP_OPS_EXE_SSE_FP_PACKED/runtime
|
|
Scalar [MUOPS/s] = 1.0E-06*FP_COMP_OPS_EXE_SSE_FP_SCALAR/runtime
|
|
SP [MUOPS/s] = 1.0E-06*FP_COMP_OPS_EXE_SSE_SINGLE_PRECISION/runtime
|
|
DP [MUOPS/s] = 1.0E-06*FP_COMP_OPS_EXE_SSE_DOUBLE_PRECISION/runtime
|
|
-
|
|
The Nehalem has no possibility to measure MFLOPs if mixed precision calculations are done.
|
|
Therefore both single as well as double precision are measured to ensure the correctness
|
|
of the measurements. You can check if your code was vectorized on the number of
|
|
FP_COMP_OPS_EXE_SSE_FP_PACKED versus the FP_COMP_OPS_EXE_SSE_FP_SCALAR.
|
|
|