Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Gupta, Anshuman" <anshuman.gupta@intel.com>
To: "Tauro, Riana" <riana.tauro@intel.com>,
	"igt-dev@lists.freedesktop.org" <igt-dev@lists.freedesktop.org>
Subject: Re: [igt-dev] [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines
Date: Tue, 21 Jun 2022 15:14:37 +0000	[thread overview]
Message-ID: <6e5d13c6cc0d4a9fa49c09e1a32a5630@intel.com> (raw)
In-Reply-To: <20220621134526.2040218-3-riana.tauro@intel.com>



> -----Original Message-----
> From: Tauro, Riana <riana.tauro@intel.com>
> Sent: Tuesday, June 21, 2022 7:15 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman
> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>
> Subject: [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test
> on remaining engines
> 
> Run rc6_idle on a single instance of every engine
> 
> v2: add dynamic subtest (Anshuman)
> 
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Looks Good to me.
Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
> ---
>  tests/i915/i915_pm_rc6_residency.c | 18 +++++++++++++-----
>  1 file changed, 13 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/i915/i915_pm_rc6_residency.c
> b/tests/i915/i915_pm_rc6_residency.c
> index 7c1ff32b..e377e70c 100644
> --- a/tests/i915/i915_pm_rc6_residency.c
> +++ b/tests/i915/i915_pm_rc6_residency.c
> @@ -292,7 +292,7 @@ static void sighandler(int sig)  {  }
> 
> -static void bg_load(int i915, unsigned int flags, unsigned long *ctl)
> +static void bg_load(int i915, uint64_t engine_flags, unsigned int
> +flags, unsigned long *ctl)
>  {
>  	const bool has_execlists = intel_gen(intel_get_drm_devid(i915)) >= 8;
>  	struct drm_i915_gem_exec_object2 obj = { @@ -301,6 +301,7 @@
> static void bg_load(int i915, unsigned int flags, unsigned long *ctl)
>  	struct drm_i915_gem_execbuffer2 execbuf = {
>  		.buffers_ptr = to_user_pointer(&obj),
>  		.buffer_count = 1,
> +		.flags = engine_flags,
>  	};
>  	struct sigaction act = {
>  		.sa_handler = sighandler
> @@ -358,7 +359,7 @@ static void kill_children(int sig)
>  	signal(sig, old);
>  }
> 
> -static void rc6_idle(int i915)
> +static void rc6_idle(int i915, uint64_t flags)
>  {
>  	const int64_t duration_ns = SLEEP_DURATION *
> (int64_t)NSEC_PER_SEC;
>  	const int tolerance = 20; /* Some RC6 is better than none! */ @@ -
> 404,7 +405,7 @@ static void rc6_idle(int i915)
>  	for (int p = 0; p < ARRAY_SIZE(phases); p++) {
>  		memset(done, 0, 2 * sizeof(*done));
>  		igt_fork(child, 1) /* Setup up a very light load */
> -			bg_load(i915, phases[p].flags, done);
> +			bg_load(i915, flags, phases[p].flags, done);
> 
>  		rapl_read(&rapl, &sample[0]);
>  		cycles = -READ_ONCE(done[1]);
> @@ -539,11 +540,18 @@ igt_main
>  		ctx = intel_ctx_create_all_physical(i915);
>  	}
> 
> -	igt_subtest("rc6-idle") {
> +	igt_subtest_with_dynamic("rc6-idle") {
> +		const struct intel_execution_engine2 *e;
> +
>  		igt_require_gem(i915);
>  		gem_quiescent_gpu(i915);
> 
> -		rc6_idle(i915);
> +		for_each_ctx_engine(i915, ctx, e) {
> +			if (e->instance == 0) {
> +				igt_dynamic_f("%s", e->name)
> +					rc6_idle(i915, e->flags);
> +			}
> +		}
>  	}
> 
>  	igt_subtest("rc6-fence") {
> --
> 2.25.1

  reply	other threads:[~2022-06-21 15:14 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-21 13:45 [igt-dev] [PATCH i-g-t v2 0/2] Extend i915_pm_rc6_residency Riana Tauro
2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 1/2] tests/i915/pm_rc6_residency: Refactoring intel_ctx_t to igt_fixture Riana Tauro
2022-06-21 14:10   ` Gupta, Anshuman
2022-06-21 13:45 ` [igt-dev] [PATCH i-g-t v2 2/2] tests/i915/pm_rc6_residency: Extend rc6-idle test on remaining engines Riana Tauro
2022-06-21 15:14   ` Gupta, Anshuman [this message]
2022-06-21 14:31 ` [igt-dev] ✗ Fi.CI.BAT: failure for Extend i915_pm_rc6_residency (rev2) Patchwork
2022-06-21 15:33   ` Tauro, Riana
2022-06-21 16:15     ` Vudum, Lakshminarayana
2022-06-21 16:07 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2022-06-22  3:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-06-22  5:03   ` Tauro, Riana
2022-06-23  5:23     ` Vudum, Lakshminarayana
2022-06-23  5:25       ` Tauro, Riana
2022-06-23 13:24         ` Tauro, Riana
2022-06-23 14:18           ` Vudum, Lakshminarayana
2022-06-27  5:43             ` Sarvela, Tomi P
2022-06-27  7:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
2022-06-27  8:18 ` Patchwork
2022-06-27 14:16 ` 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=6e5d13c6cc0d4a9fa49c09e1a32a5630@intel.com \
    --to=anshuman.gupta@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=riana.tauro@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