From: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
To: Riana Tauro <riana.tauro@intel.com>
Cc: <igt-dev@lists.freedesktop.org>, <anshuman.gupta@intel.com>,
<vinay.belgaumkar@intel.com>, <kamil.konieczny@linux.intel.com>,
<soham.purkait@intel.com>
Subject: Re: [PATCH i-g-t v2 3/3] tests/intel/xe_pmu: Add idle engine activity tests
Date: Tue, 18 Feb 2025 12:18:31 -0800 [thread overview]
Message-ID: <Z7TrF1yMfu+ckc0e@orsosgc001> (raw)
In-Reply-To: <20250217142021.951467-4-riana.tauro@intel.com>
On Mon, Feb 17, 2025 at 07:50:18PM +0530, Riana Tauro wrote:
>Add two tests to validate engine activity counters
>(engine-active-ticks, engine-total-ticks) when idle and
>trailing idle (workload is ended before reading counters)
>
>v2: add trailing idle test
> rename busy to load (Umesh)
>
>Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>---
> tests/intel/xe_pmu.c | 40 ++++++++++++++++++++++++++++++++++------
> 1 file changed, 34 insertions(+), 6 deletions(-)
>
>diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c
>index aa7d53523..5d2178b62 100644
>--- a/tests/intel/xe_pmu.c
>+++ b/tests/intel/xe_pmu.c
>@@ -11,6 +11,12 @@
> * Sub-category: Telemetry
> * Test category: Functional tests
> *
>+ * SUBTEST: engine-activity-idle
>+ * Description: Test to validate engine activity shows no load when idle
>+ *
>+ * SUBTEST: engine-activity-load-idle
>+ * Description: Test to validate engine activity with full load followed by trailing idle
>+ *
> * SUBTEST: engine-activity-load
> * Description: Test to validate engine activity stats by running a workload and
> * reading engine active ticks and engine total ticks PMU counters
>@@ -24,6 +30,10 @@
> #define SLEEP_DURATION 2 /* in seconds */
> const double tolerance = 0.1;
>
>+/* flag masks */
>+#define TEST_LOAD BIT(0)
>+#define TEST_TRAILING_IDLE BIT(1)
>+
> #define assert_within_epsilon(x, ref, tolerance) \
> igt_assert_f((double)(x) <= (1.0 + (tolerance)) * (double)(ref) && \
> (double)(x) >= (1.0 - (tolerance)) * (double)(ref), \
>@@ -95,7 +105,7 @@ static uint64_t get_event_config(int xe, unsigned int gt, struct drm_xe_engine_c
> return pmu_config;
> }
>
>-static void engine_activity(int fd, struct drm_xe_engine_class_instance *eci)
>+static void engine_activity(int fd, struct drm_xe_engine_class_instance *eci, unsigned int flags)
> {
> uint64_t config, engine_active_ticks, engine_total_ticks, before[2], after[2];
> struct xe_cork *cork = NULL;
>@@ -109,14 +119,20 @@ static void engine_activity(int fd, struct drm_xe_engine_class_instance *eci)
> pmu_fd[1] = open_group(fd, config, pmu_fd[0]);
>
> vm = xe_vm_create(fd, 0, 0);
>- cork = xe_cork_create_opts(fd, eci, vm, 1, 1);
>- xe_cork_sync_start(fd, cork);
>+
>+ if (flags & TEST_LOAD) {
>+ cork = xe_cork_create_opts(fd, eci, vm, 1, 1);
>+ xe_cork_sync_start(fd, cork);
>+ }
>
> pmu_read_multi(pmu_fd[0], 2, before);
> usleep(SLEEP_DURATION * USEC_PER_SEC);
>+ if (flags & TEST_TRAILING_IDLE)
>+ xe_cork_sync_end(fd, cork);
> pmu_read_multi(pmu_fd[0], 2, after);
>
>- xe_cork_sync_end(fd, cork);
>+ if ((flags & TEST_LOAD) && !cork->ended)
Looks like !cork->ended is already inside xe_cork_sync_end(), but comes
with a Warning!!. I would move xe_cork_sync_end() into a helper within
this file and check for that. That way we can continue using the helper
in future tests rather that adding !cork->ended in checks similar to
above. But, this is is fine for now and we can look at it when more
tests come in.
Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Thanks,
Umesh
>+ xe_cork_sync_end(fd, cork);
>
> engine_active_ticks = after[0] - before[0];
> engine_total_ticks = after[1] - before[1];
>@@ -134,7 +150,10 @@ static void engine_activity(int fd, struct drm_xe_engine_class_instance *eci)
> close(pmu_fd[0]);
> close(pmu_fd[1]);
>
>- assert_within_epsilon(engine_active_ticks, engine_total_ticks, tolerance);
>+ if (flags & TEST_LOAD)
>+ assert_within_epsilon(engine_active_ticks, engine_total_ticks, tolerance);
>+ else
>+ igt_assert(!engine_active_ticks);
> }
>
> igt_main
>@@ -146,9 +165,18 @@ igt_main
> fd = drm_open_driver(DRIVER_XE);
> }
>
>+ igt_describe("Validate there is no engine activity when idle");
>+ test_each_engine("engine-activity-idle", fd, eci)
>+ engine_activity(fd, eci, 0);
>+
>+ igt_describe("Validate engine activity with load and trailing idle");
>+ test_each_engine("engine-activity-load-idle", fd, eci)
>+ engine_activity(fd, eci, TEST_LOAD | TEST_TRAILING_IDLE);
>+
> igt_describe("Validate engine activity with workload");
> test_each_engine("engine-activity-load", fd, eci)
>- engine_activity(fd, eci);
>+ engine_activity(fd, eci, TEST_LOAD);
>+
>
> igt_fixture {
> close(fd);
>--
>2.47.1
>
next prev parent reply other threads:[~2025-02-18 20:18 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-17 14:20 [PATCH i-g-t v2 0/3] Add PMU tests to validate engine activity Riana Tauro
2025-02-17 14:20 ` [PATCH i-g-t v2 1/3] lib/igt_perf: Add utils to extract PMU event info Riana Tauro
2025-02-19 10:13 ` Kamil Konieczny
2025-02-17 14:20 ` [PATCH i-g-t v2 2/3] tests/intel/xe_pmu: Add PMU test to validate engine activity stats Riana Tauro
2025-02-18 20:05 ` Umesh Nerlige Ramappa
2025-02-17 14:20 ` [PATCH i-g-t v2 3/3] tests/intel/xe_pmu: Add idle engine activity tests Riana Tauro
2025-02-18 20:18 ` Umesh Nerlige Ramappa [this message]
2025-02-17 23:42 ` ✓ Xe.CI.BAT: success for Add PMU tests to validate engine activity (rev3) Patchwork
2025-02-17 23:48 ` ✓ i915.CI.BAT: " Patchwork
2025-02-18 5:31 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-18 17:20 ` ✗ Xe.CI.Full: " Patchwork
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=Z7TrF1yMfu+ckc0e@orsosgc001 \
--to=umesh.nerlige.ramappa@intel.com \
--cc=anshuman.gupta@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kamil.konieczny@linux.intel.com \
--cc=riana.tauro@intel.com \
--cc=soham.purkait@intel.com \
--cc=vinay.belgaumkar@intel.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