linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 00/22] Python generated Intel metrics
@ 2025-09-04  4:46 Ian Rogers
  2025-09-04  4:46 ` [PATCH v6 01/22] perf jevents: Add RAPL metrics for all Intel models Ian Rogers
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Ian Rogers @ 2025-09-04  4:46 UTC (permalink / raw)
  To: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Namhyung Kim, Mark Rutland, Alexander Shishkin, Jiri Olsa,
	Ian Rogers, Adrian Hunter, Kan Liang, James Clark, Xu Yang,
	linux-kernel, linux-perf-users, John Garry, Jing Zhang,
	Sandipan Das, Benjamin Gray, Perry Taylor, Samantha Alt,
	Caleb Biggers, Weilin Wang, Edward Baker, Thomas Falcon

Generate twenty sets of additional metrics for Intel. Rapl and Idle
metrics aren't specific to Intel but are placed here for ease and
convenience. Smi and tsx metrics are added so they can be dropped from
the per model json files. There are four uncore sets of metrics and
eleven core metrics. Add a CheckPmu function to metric to simplify
detecting the presence of hybrid PMUs in events. Metrics with
experimental events are flagged as experimental in their description.

The patches should be applied on top of:
https://lore.kernel.org/lkml/20250829033138.4166591-1-irogers@google.com/

v6. Fix issue with '\-' escape not being '\\-' (reported-by Sandipan
    Das <sandidas@amd.com>) which didn't alter the generated json.

v5. Rebase. Fix description for smi metric (Kan). Prefix all metric
    names with lpm_ (short for Linux Perf Metric) so that python
    generated metrics are clearly namespaced. Kan requested a
    namespace in his review:
    https://lore.kernel.org/lkml/43548903-b7c8-47c4-b1da-0258293ecbd4@linux.intel.com/
    The v5 series is:
    https://lore.kernel.org/lkml/20250829041104.4186320-1-irogers@google.com/

v4. Experimental metric descriptions. Add mesh bandwidth metric. Rebase.
    https://lore.kernel.org/lkml/20240926175035.408668-1-irogers@google.com/

v3. Swap tsx and CheckPMU patches that were in the wrong order. Some
    minor code cleanup changes. Drop reference to merged fix for
    umasks/occ_sel in PCU events and for cstate metrics.
    https://lore.kernel.org/lkml/20240314055919.1979781-1-irogers@google.com/

v2. Drop the cycles breakdown in favor of having it as a common
    metric, spelling and other improvements suggested by Kan Liang
    <kan.liang@linux.intel.com>.
    https://lore.kernel.org/lkml/20240301185559.2661241-1-irogers@google.com/

v1. https://lore.kernel.org/lkml/20240229001806.4158429-1-irogers@google.com/

Ian Rogers (22):
  perf jevents: Add RAPL metrics for all Intel models
  perf jevents: Add idle metric for Intel models
  perf jevents: Add CheckPmu to see if a PMU is in loaded json events
  perf jevents: Add smi metric group for Intel models
  perf jevents: Mark metrics with experimental events as experimental
  perf jevents: Add tsx metric group for Intel models
  perf jevents: Add br metric group for branch statistics on Intel
  perf jevents: Add software prefetch (swpf) metric group for Intel
  perf jevents: Add ports metric group giving utilization on Intel
  perf jevents: Add L2 metrics for Intel
  perf jevents: Add load store breakdown metrics ldst for Intel
  perf jevents: Add ILP metrics for Intel
  perf jevents: Add context switch metrics for Intel
  perf jevents: Add FPU metrics for Intel
  perf jevents: Add Miss Level Parallelism (MLP) metric for Intel
  perf jevents: Add mem_bw metric for Intel
  perf jevents: Add local/remote "mem" breakdown metrics for Intel
  perf jevents: Add dir breakdown metrics for Intel
  perf jevents: Add C-State metrics from the PCU PMU for Intel
  perf jevents: Add local/remote miss latency metrics for Intel
  perf jevents: Add upi_bw metric for Intel
  perf jevents: Add mesh bandwidth saturation metric for Intel

 tools/perf/pmu-events/intel_metrics.py | 1065 +++++++++++++++++++++++-
 tools/perf/pmu-events/metric.py        |   52 ++
 2 files changed, 1114 insertions(+), 3 deletions(-)

-- 
2.51.0.338.gd7d06c2dae-goog


^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2025-09-04  4:47 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-04  4:46 [PATCH v6 00/22] Python generated Intel metrics Ian Rogers
2025-09-04  4:46 ` [PATCH v6 01/22] perf jevents: Add RAPL metrics for all Intel models Ian Rogers
2025-09-04  4:46 ` [PATCH v6 02/22] perf jevents: Add idle metric for " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 03/22] perf jevents: Add CheckPmu to see if a PMU is in loaded json events Ian Rogers
2025-09-04  4:46 ` [PATCH v6 04/22] perf jevents: Add smi metric group for Intel models Ian Rogers
2025-09-04  4:46 ` [PATCH v6 05/22] perf jevents: Mark metrics with experimental events as experimental Ian Rogers
2025-09-04  4:46 ` [PATCH v6 06/22] perf jevents: Add tsx metric group for Intel models Ian Rogers
2025-09-04  4:46 ` [PATCH v6 07/22] perf jevents: Add br metric group for branch statistics on Intel Ian Rogers
2025-09-04  4:46 ` [PATCH v6 08/22] perf jevents: Add software prefetch (swpf) metric group for Intel Ian Rogers
2025-09-04  4:46 ` [PATCH v6 09/22] perf jevents: Add ports metric group giving utilization on Intel Ian Rogers
2025-09-04  4:46 ` [PATCH v6 10/22] perf jevents: Add L2 metrics for Intel Ian Rogers
2025-09-04  4:46 ` [PATCH v6 11/22] perf jevents: Add load store breakdown metrics ldst " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 12/22] perf jevents: Add ILP metrics " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 13/22] perf jevents: Add context switch " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 14/22] perf jevents: Add FPU " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 15/22] perf jevents: Add Miss Level Parallelism (MLP) metric " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 16/22] perf jevents: Add mem_bw " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 17/22] perf jevents: Add local/remote "mem" breakdown metrics " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 18/22] perf jevents: Add dir " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 19/22] perf jevents: Add C-State metrics from the PCU PMU " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 20/22] perf jevents: Add local/remote miss latency metrics " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 21/22] perf jevents: Add upi_bw metric " Ian Rogers
2025-09-04  4:46 ` [PATCH v6 22/22] perf jevents: Add mesh bandwidth saturation " Ian Rogers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).