All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Madhavan Srinivasan <maddy@linux.ibm.com>
Cc: Ian Rogers <irogers@google.com>,
	Athira Rajeev <atrajeev@linux.vnet.ibm.com>,
	Kajol Jain <kjain@linux.ibm.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Ingo Molnar <mingo@redhat.com>,
	Namhyung Kim <namhyung@kernel.org>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Jiri Olsa <jolsa@kernel.org>,
	Adrian Hunter <adrian.hunter@intel.com>,
	linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1] perf vendor power9 nest metrics: Correct unit from MB to MiB
Date: Tue, 16 Dec 2025 15:28:12 -0300	[thread overview]
Message-ID: <aUGkvNzhls6cE39T@x1> (raw)
In-Reply-To: <a980f102-b468-4d55-abd6-885f02dc01e9@linux.ibm.com>

On Wed, Dec 10, 2025 at 11:09:40AM +0530, Madhavan Srinivasan wrote:
> 
> On 10/31/25 9:56 PM, Ian Rogers wrote:
> > 6.1e-5 is very close to 1/16384, where 16384 is 2^14, i.e. a power of
> > 2. When units are in powers of 2 the IEC unit is MiB (mebibytes)
> > rather than MB (megabytes) where the values are powers of 10. This
> > patch corrects the unit for uniformity and because such units may be
> > pattern matched against.
> 
> 
> Changes looks fine to me.
> 
> Reviewed-by: Madhavan Srinivasan <maddy@linux.ibm.com>
> b/w  power10 metrics file could also have this fix I guess.

Thanks, applied to perf-tools-next,

- Arnaldo
 
> > Signed-off-by: Ian Rogers <irogers@google.com>
> > ---
> >   .../perf/pmu-events/arch/powerpc/power9/nest_metrics.json | 8 ++++----
> >   1 file changed, 4 insertions(+), 4 deletions(-)
> > 
> > diff --git a/tools/perf/pmu-events/arch/powerpc/power9/nest_metrics.json b/tools/perf/pmu-events/arch/powerpc/power9/nest_metrics.json
> > index 7a5d1bf543f8..8d028a7c2777 100644
> > --- a/tools/perf/pmu-events/arch/powerpc/power9/nest_metrics.json
> > +++ b/tools/perf/pmu-events/arch/powerpc/power9/nest_metrics.json
> > @@ -29,25 +29,25 @@
> >   	"MetricExpr" : "nest_mcs01_imc@PM_MCS01_128B_RD_DISP_PORT01@ + nest_mcs01_imc@PM_MCS01_128B_RD_DISP_PORT23@",
> >   	"MetricName" : "mcs01-read",
> >   	"MetricGroup" : "memory-bandwidth",
> > -	"ScaleUnit": "6.1e-5MB"
> > +	"ScaleUnit": "6.1e-5MiB"
> >       },
> >       {
> >   	"MetricExpr" : "nest_mcs23_imc@PM_MCS23_128B_RD_DISP_PORT01@ + nest_mcs23_imc@PM_MCS23_128B_RD_DISP_PORT23@",
> >   	"MetricName" : "mcs23-read",
> >   	"MetricGroup" : "memory-bandwidth",
> > -	"ScaleUnit": "6.1e-5MB"
> > +	"ScaleUnit": "6.1e-5MiB"
> >       },
> >       {
> >   	"MetricExpr" : "nest_mcs01_imc@PM_MCS01_128B_WR_DISP_PORT01@ + nest_mcs01_imc@PM_MCS01_128B_WR_DISP_PORT23@",
> >   	"MetricName" : "mcs01-write",
> >   	"MetricGroup" : "memory-bandwidth",
> > -	"ScaleUnit": "6.1e-5MB"
> > +	"ScaleUnit": "6.1e-5MiB"
> >       },
> >       {
> >   	"MetricExpr" : "nest_mcs23_imc@PM_MCS23_128B_WR_DISP_PORT01@ + nest_mcs23_imc@PM_MCS23_128B_WR_DISP_PORT23@",
> >   	"MetricName" : "mcs23-write",
> >   	"MetricGroup" : "memory-bandwidth",
> > -	"ScaleUnit": "6.1e-5MB"
> > +	"ScaleUnit": "6.1e-5MiB"
> >       },
> >       {
> >   	"MetricExpr" : "nest_powerbus0_imc@PM_PB_CYC@",

      parent reply	other threads:[~2025-12-16 18:28 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-31 16:26 [PATCH v1] perf vendor power9 nest metrics: Correct unit from MB to MiB Ian Rogers
2025-11-12 19:31 ` Ian Rogers
2025-12-02 16:15   ` Ian Rogers
2025-12-10  5:39 ` Madhavan Srinivasan
2025-12-10  6:02   ` Ian Rogers
2025-12-16 18:28   ` Arnaldo Carvalho de Melo [this message]

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=aUGkvNzhls6cE39T@x1 \
    --to=acme@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=atrajeev@linux.vnet.ibm.com \
    --cc=irogers@google.com \
    --cc=jolsa@kernel.org \
    --cc=kjain@linux.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=maddy@linux.ibm.com \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=peterz@infradead.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.