[igt-dev] [PATCH i-g-t 03/13] i915/perf_pmu: Query for enhanced busyness tracking

Chris Wilson chris at chris-wilson.co.uk
Mon Feb 4 08:36:04 UTC 2019


Use the scheduler query to determine if the platform supports the
enhanced busyness tracking required for high accuracy tests.

Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin at intel.com>
---
 tests/perf_pmu.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/perf_pmu.c b/tests/perf_pmu.c
index c9881e59f..45ff5a2a2 100644
--- a/tests/perf_pmu.c
+++ b/tests/perf_pmu.c
@@ -1457,7 +1457,7 @@ test_enable_race(int gem_fd, const struct intel_execution_engine2 *e)
 	struct drm_i915_gem_execbuffer2 eb = { };
 	int fd;
 
-	igt_require(gem_has_execlists(gem_fd));
+	igt_require(gem_scheduler_has_pmu_support(gem_fd));
 	igt_require(gem_has_engine(gem_fd, e->class, e->instance));
 
 	obj.handle = gem_create(gem_fd, 4096);
@@ -1535,7 +1535,7 @@ accuracy(int gem_fd, const struct intel_execution_engine2 *e,
 	int fd;
 
 	/* Sampling platforms cannot reach the high accuracy criteria. */
-	igt_require(gem_has_execlists(gem_fd));
+	igt_require(gem_scheduler_has_pmu_support(gem_fd));
 
 	/* Aim for approximately 100 iterations for calibration */
 	cycle_us = min_test_us / target_iters;
-- 
2.20.1



More information about the igt-dev mailing list