[igt-dev] [PATCH i-g-t v3 6/6] tests/i915/gem_close_race: add multiGPU subtests
Kamil Konieczny
kamil.konieczny at linux.intel.com
Thu Dec 8 22:38:08 UTC 2022
Add two multiGPU subtests multigpu-basic-threads and
multigpu-basic-process.
v2: remove code for setting gpu_count=1 (Mauro)
Signed-off-by: Kamil Konieczny <kamil.konieczny at linux.intel.com>
Reviewed-by: Mauro Carvalho Chehab <mchehab at kernel.org>
---
tests/i915/gem_close_race.c | 52 +++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/tests/i915/gem_close_race.c b/tests/i915/gem_close_race.c
index e37a8882..9c646f42 100644
--- a/tests/i915/gem_close_race.c
+++ b/tests/i915/gem_close_race.c
@@ -47,6 +47,7 @@
#include "i915/gem_mman.h"
#include "igt.h"
#include "igt_aux.h"
+#include "igt_device_scan.h"
#define OBJECT_SIZE (256 * 1024)
@@ -254,6 +255,31 @@ static void thread(int fd, struct drm_gem_open name,
free(history);
}
+static void multigpu_threads(int timeout, unsigned int flags, int gpu_count)
+{
+ int size = sysconf(_SC_NPROCESSORS_ONLN);
+
+ size /= gpu_count;
+ if (size < 1)
+ size = 1;
+
+ igt_multi_fork(gpu, gpu_count) {
+ struct drm_gem_open name;
+ int fd = __drm_open_driver_another(gpu, DRIVER_INTEL);
+
+ igt_assert(fd > 0);
+
+ igt_fork(child, size)
+ thread(fd, name, timeout, flags);
+
+ igt_waitchildren();
+ gem_quiescent_gpu(fd);
+ close(fd);
+ }
+
+ igt_waitchildren();
+}
+
static void threads(int timeout, unsigned int flags)
{
struct drm_gem_open name;
@@ -272,6 +298,8 @@ static void threads(int timeout, unsigned int flags)
igt_main
{
+ int gpu_count;
+
igt_fixture {
int fd;
@@ -286,6 +314,8 @@ igt_main
exec_addr = max_t(exec_addr, exec_addr, data_addr);
data_addr += exec_addr;
+ gpu_count = igt_device_filter_count();
+
igt_fork_hang_detector(fd);
close(fd);
}
@@ -302,11 +332,33 @@ igt_main
close(fd);
}
+ igt_describe("Basic workload submission on multi-GPU machine.");
+ igt_subtest("multigpu-basic-process") {
+ igt_require(gpu_count > 1);
+
+ igt_multi_fork(child, gpu_count) {
+ int fd = __drm_open_driver_another(child, DRIVER_INTEL);
+
+ igt_assert(fd > 0);
+ process(fd, child);
+ gem_quiescent_gpu(fd);
+ close(fd);
+ }
+
+ igt_waitchildren();
+ }
+
igt_describe("Share buffer handle across different drm fd's and trying to race "
" gem_close against continuous workload with minimum timeout.");
igt_subtest("basic-threads")
threads(1, 0);
+ igt_describe("Run basic-threads race on multi-GPU machine.");
+ igt_subtest("multigpu-basic-threads") {
+ igt_require(gpu_count > 1);
+ multigpu_threads(1, 0, gpu_count);
+ }
+
igt_describe("Test try to race gem_close against submission of continuous"
" workload.");
igt_subtest("process-exit") {
--
2.34.1
More information about the igt-dev
mailing list