[PATCH i-g-t v9 7/7] tests/intel/gem_exec_gttfill: simplify multiGPU subtest
Zbigniew Kempczyński
zbigniew.kempczynski at intel.com
Mon Feb 19 11:29:04 UTC 2024
On Thu, Feb 15, 2024 at 05:10:14PM +0100, Kamil Konieczny wrote:
> Simplify multi-GPU subtest with the help of new multigpu library.
>
> Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski at intel.com>
> Cc: "Dominik Karol Pi�~Etkoki" <dominik.karol.piatkowski at intel.com>
Sth weird with encoding happened above.
> Signed-off-by: Kamil Konieczny <kamil.konieczny at linux.intel.com>
> ---
> tests/intel/gem_exec_gttfill.c | 14 ++++----------
> 1 file changed, 4 insertions(+), 10 deletions(-)
>
> diff --git a/tests/intel/gem_exec_gttfill.c b/tests/intel/gem_exec_gttfill.c
> index 28c251915..f99ee54ef 100644
> --- a/tests/intel/gem_exec_gttfill.c
> +++ b/tests/intel/gem_exec_gttfill.c
> @@ -24,8 +24,8 @@
> #include "i915/gem.h"
> #include "i915/gem_create.h"
> #include "igt.h"
> -#include "igt_device_scan.h"
> #include "igt_rand.h"
> +#include "intel_multigpu.h"
> /**
> * TEST: gem exec gttfill
> * Description: Fill the GTT with batches.
> @@ -262,7 +262,7 @@ igt_main
> {
> const struct intel_execution_engine2 *e;
> const intel_ctx_t *ctx;
> - int i915 = -1, gpu_count;
> + int i915 = -1;
>
> igt_fixture {
> i915 = drm_open_driver(DRIVER_INTEL);
> @@ -296,17 +296,12 @@ igt_main
> igt_fixture {
> igt_stop_hang_detector();
> intel_ctx_destroy(i915, ctx);
> - // prepare multigpu tests
> - gpu_count = igt_device_filter_count();
> }
>
> igt_subtest("multigpu-basic") { /* run on two or more discrete cards */
> - igt_require(gpu_count > 1);
> - igt_multi_fork(child, gpu_count) {
> - int g_fd;
> + gem_require_multigpu(2);
> + igt_multi_fork_foreach_gpu(g_fd, DRIVER_INTEL) {
> // prepare
> - g_fd = __drm_open_driver_another(child, DRIVER_INTEL);
> - igt_assert(g_fd >= 0);
> ctx = intel_ctx_create_all_physical(g_fd);
> igt_fork_hang_detector(g_fd);
> // subtest
> @@ -314,7 +309,6 @@ igt_main
> // release resources
> igt_stop_hang_detector();
> intel_ctx_destroy(g_fd, ctx);
> - drm_close_driver(g_fd);
> }
>
> igt_waitchildren();
> --
> 2.42.0
>
Looks good to me:
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski at intel.com>
--
Zbigniew
More information about the igt-dev
mailing list