linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Falcon, Thomas" <thomas.falcon@intel.com>
To: "Baker, Edward" <edward.baker@intel.com>,
	"Wang, Weilin" <weilin.wang@intel.com>,
	"alexander.shishkin@linux.intel.com"
	<alexander.shishkin@linux.intel.com>,
	"xu.yang_2@nxp.com" <xu.yang_2@nxp.com>,
	"Biggers, Caleb" <caleb.biggers@intel.com>,
	"Hunter, Adrian" <adrian.hunter@intel.com>,
	"Taylor, Perry" <perry.taylor@intel.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-perf-users@vger.kernel.org"
	<linux-perf-users@vger.kernel.org>,
	"mingo@redhat.com" <mingo@redhat.com>,
	"irogers@google.com" <irogers@google.com>,
	"sandipan.das@amd.com" <sandipan.das@amd.com>,
	"james.clark@linaro.org" <james.clark@linaro.org>,
	"kan.liang@linux.intel.com" <kan.liang@linux.intel.com>,
	"mark.rutland@arm.com" <mark.rutland@arm.com>,
	"peterz@infradead.org" <peterz@infradead.org>,
	"john.g.garry@oracle.com" <john.g.garry@oracle.com>,
	"bgray@linux.ibm.com" <bgray@linux.ibm.com>,
	"Alt, Samantha" <samantha.alt@intel.com>,
	"renyu.zj@linux.alibaba.com" <renyu.zj@linux.alibaba.com>,
	"acme@kernel.org" <acme@kernel.org>,
	"jolsa@kernel.org" <jolsa@kernel.org>,
	"namhyung@kernel.org" <namhyung@kernel.org>
Subject: Re: [PATCH v6 00/22] Python generated Intel metrics
Date: Fri, 19 Sep 2025 15:31:01 +0000	[thread overview]
Message-ID: <8630f8dd4ff3ef050b3517b86ffa9fcae695e675.camel@intel.com> (raw)
In-Reply-To: <20250904044653.1002362-1-irogers@google.com>

On Wed, 2025-09-03 at 21:46 -0700, Ian Rogers wrote:
> 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/

Tested on Alder Lake, Arrow Lake, and Sapphire Rapids.

Tested-by: Thomas Falcon <thomas.falcon@intel.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(-)

  parent reply	other threads:[~2025-09-19 15:31 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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-17 18:02   ` Falcon, Thomas
2025-09-17 20:49     ` 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
2025-09-19 15:31 ` Falcon, Thomas [this message]
2025-09-20 12:54   ` [PATCH v6 00/22] Python generated Intel metrics Ian Rogers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8630f8dd4ff3ef050b3517b86ffa9fcae695e675.camel@intel.com \
    --to=thomas.falcon@intel.com \
    --cc=acme@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=bgray@linux.ibm.com \
    --cc=caleb.biggers@intel.com \
    --cc=edward.baker@intel.com \
    --cc=irogers@google.com \
    --cc=james.clark@linaro.org \
    --cc=john.g.garry@oracle.com \
    --cc=jolsa@kernel.org \
    --cc=kan.liang@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=perry.taylor@intel.com \
    --cc=peterz@infradead.org \
    --cc=renyu.zj@linux.alibaba.com \
    --cc=samantha.alt@intel.com \
    --cc=sandipan.das@amd.com \
    --cc=weilin.wang@intel.com \
    --cc=xu.yang_2@nxp.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).