* [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe
@ 2023-09-11 6:03 Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 1/9] lib/intel_compute: Migrate xe_compute library to intel_compute Zbigniew Kempczyński
` (12 more replies)
0 siblings, 13 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
Even we already got gem|xe_gpgpu_fill we'd like to have a little
bit more complex compute test. Pipeline comes from reversing aub
dumped from hello.c square compute.
This series enables compute on TGL, DG2, ATS-M, PVC selectively
for i915 and Xe.
v3: Addressing review comments, series is r-b apart of first patch.
Get the results for both - i915 and xe.
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Zbigniew Kempczyński (9):
lib/intel_compute: Migrate xe_compute library to intel_compute
lib/intel_compute: Add compatibility flags for running compute
lib/intel_compute: Reorganize the code for i915 version preparation
lib/intel_compute: Add name field for debugging purposes
lib/intel_compute: Add i915 path in compute library
intel/gem_compute: Add test which runs compute workload on i915
lib/intel_compute: Add XeHP implementation of compute pipeline
lib/intel_compute: Adding pvc compute pipeline implementation
tests/gem|xe_compute: Update documentation regarding test requirements
lib/intel_compute.c | 1157 ++++++++++++++++++++++
lib/{xe/xe_compute.h => intel_compute.h} | 12 +-
lib/intel_compute_square_kernels.c | 166 ++++
lib/meson.build | 4 +-
lib/xe/xe_compute.c | 488 ---------
lib/xe/xe_compute_square_kernels.c | 71 --
tests/intel/gem_compute.c | 45 +
tests/intel/xe_compute.c | 7 +-
tests/meson.build | 1 +
9 files changed, 1380 insertions(+), 571 deletions(-)
create mode 100644 lib/intel_compute.c
rename lib/{xe/xe_compute.h => intel_compute.h} (72%)
create mode 100644 lib/intel_compute_square_kernels.c
delete mode 100644 lib/xe/xe_compute.c
delete mode 100644 lib/xe/xe_compute_square_kernels.c
create mode 100644 tests/intel/gem_compute.c
--
2.34.1
^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t v3 1/9] lib/intel_compute: Migrate xe_compute library to intel_compute
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
@ 2023-09-11 6:03 ` Zbigniew Kempczyński
2023-09-11 9:49 ` Kamil Konieczny
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 2/9] lib/intel_compute: Add compatibility flags for running compute Zbigniew Kempczyński
` (11 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
During my work on adding xe-compute support to DG2 I hit some issues
on Xe driver so instead of limiting workload to Xe only I decided to
handle i915 as well. Such attitude might be handy on driver feature
status comparison.
Patch does preparation step to share the code between i915 and Xe.
v2: Add intel_ prefix as compute code is in the library and globally
visible (Kamil)
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/{xe/xe_compute.c => intel_compute.c} | 21 +++++++++----------
lib/{xe/xe_compute.h => intel_compute.h} | 12 +++++------
...rnels.c => intel_compute_square_kernels.c} | 4 ++--
lib/meson.build | 4 ++--
tests/intel/xe_compute.c | 4 ++--
5 files changed, 22 insertions(+), 23 deletions(-)
rename lib/{xe/xe_compute.c => intel_compute.c} (97%)
rename lib/{xe/xe_compute.h => intel_compute.h} (72%)
rename lib/{xe/xe_compute_square_kernels.c => intel_compute_square_kernels.c} (97%)
diff --git a/lib/xe/xe_compute.c b/lib/intel_compute.c
similarity index 97%
rename from lib/xe/xe_compute.c
rename to lib/intel_compute.c
index 3e8112a048..c0f5b1c937 100644
--- a/lib/xe/xe_compute.c
+++ b/lib/intel_compute.c
@@ -9,11 +9,10 @@
#include <stdint.h>
#include "igt.h"
-#include "xe_drm.h"
+#include "intel_compute.h"
#include "lib/igt_syncobj.h"
#include "lib/intel_reg.h"
-
-#include "xe_compute.h"
+#include "xe_drm.h"
#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
@@ -453,24 +452,24 @@ static const struct {
unsigned int ip_ver;
void (*compute_exec)(int fd, const unsigned char *kernel,
unsigned int size);
-} xe_compute_batches[] = {
+} intel_compute_batches[] = {
{
.ip_ver = IP_VER(12, 0),
.compute_exec = tgl_compute_exec,
},
};
-bool run_xe_compute_kernel(int fd)
+bool run_intel_compute_kernel(int fd)
{
unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd));
unsigned int batch;
- const struct xe_compute_kernels *kernels = xe_compute_square_kernels;
+ const struct intel_compute_kernels *kernels = intel_compute_square_kernels;
- for (batch = 0; batch < ARRAY_SIZE(xe_compute_batches); batch++) {
- if (ip_ver == xe_compute_batches[batch].ip_ver)
+ for (batch = 0; batch < ARRAY_SIZE(intel_compute_batches); batch++) {
+ if (ip_ver == intel_compute_batches[batch].ip_ver)
break;
}
- if (batch == ARRAY_SIZE(xe_compute_batches))
+ if (batch == ARRAY_SIZE(intel_compute_batches))
return false;
while (kernels->kernel) {
@@ -481,8 +480,8 @@ bool run_xe_compute_kernel(int fd)
if (!kernels->kernel)
return 1;
- xe_compute_batches[batch].compute_exec(fd, kernels->kernel,
- kernels->size);
+ intel_compute_batches[batch].compute_exec(fd, kernels->kernel,
+ kernels->size);
return true;
}
diff --git a/lib/xe/xe_compute.h b/lib/intel_compute.h
similarity index 72%
rename from lib/xe/xe_compute.h
rename to lib/intel_compute.h
index b2e7e98278..ba153f064b 100644
--- a/lib/xe/xe_compute.h
+++ b/lib/intel_compute.h
@@ -6,8 +6,8 @@
* Francois Dugast <francois.dugast@intel.com>
*/
-#ifndef XE_COMPUTE_H
-#define XE_COMPUTE_H
+#ifndef INTEL_COMPUTE_H
+#define INTEL_COMPUTE_H
/*
* OpenCL Kernels are generated using:
@@ -19,14 +19,14 @@
* For each GPU model desired. A list of supported models can be obtained with: ocloc compile --help
*/
-struct xe_compute_kernels {
+struct intel_compute_kernels {
int ip_ver;
unsigned int size;
const unsigned char *kernel;
};
-extern const struct xe_compute_kernels xe_compute_square_kernels[];
+extern const struct intel_compute_kernels intel_compute_square_kernels[];
-bool run_xe_compute_kernel(int fd);
+bool run_intel_compute_kernel(int fd);
-#endif /* XE_COMPUTE_H */
+#endif /* INTEL_COMPUTE_H */
diff --git a/lib/xe/xe_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
similarity index 97%
rename from lib/xe/xe_compute_square_kernels.c
rename to lib/intel_compute_square_kernels.c
index f9c07dc778..9303a41fb3 100644
--- a/lib/xe/xe_compute_square_kernels.c
+++ b/lib/intel_compute_square_kernels.c
@@ -8,7 +8,7 @@
*/
#include "intel_chipset.h"
-#include "lib/xe/xe_compute.h"
+#include "lib/intel_compute.h"
static const unsigned char tgllp_kernel_square_bin[] = {
0x61, 0x00, 0x03, 0x80, 0x20, 0x02, 0x05, 0x03, 0x04, 0x00, 0x10, 0x00,
@@ -61,7 +61,7 @@ static const unsigned char tgllp_kernel_square_bin[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
-const struct xe_compute_kernels xe_compute_square_kernels[] = {
+const struct intel_compute_kernels intel_compute_square_kernels[] = {
{
.ip_ver = IP_VER(12, 0),
.size = sizeof(tgllp_kernel_square_bin),
diff --git a/lib/meson.build b/lib/meson.build
index 21ea9d5ac4..a45f7d677f 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -58,6 +58,8 @@ lib_sources = [
'intel_bufops.c',
'intel_chipset.c',
'intel_cmds_info.c',
+ 'intel_compute.c',
+ 'intel_compute_square_kernels.c',
'intel_ctx.c',
'intel_device_info.c',
'intel_mmio.c',
@@ -103,8 +105,6 @@ lib_sources = [
'veboxcopy_gen12.c',
'igt_msm.c',
'igt_dsc.c',
- 'xe/xe_compute.c',
- 'xe/xe_compute_square_kernels.c',
'xe/xe_gt.c',
'xe/xe_ioctl.c',
'xe/xe_query.c',
diff --git a/tests/intel/xe_compute.c b/tests/intel/xe_compute.c
index 2cf536701a..c3a6625960 100644
--- a/tests/intel/xe_compute.c
+++ b/tests/intel/xe_compute.c
@@ -14,8 +14,8 @@
#include <string.h>
#include "igt.h"
+#include "intel_compute.h"
#include "xe/xe_query.h"
-#include "xe/xe_compute.h"
/**
* SUBTEST: compute-square
@@ -29,7 +29,7 @@
static void
test_compute_square(int fd)
{
- igt_require_f(run_xe_compute_kernel(fd), "GPU not supported\n");
+ igt_require_f(run_intel_compute_kernel(fd), "GPU not supported\n");
}
igt_main
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t v3 2/9] lib/intel_compute: Add compatibility flags for running compute
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 1/9] lib/intel_compute: Migrate xe_compute library to intel_compute Zbigniew Kempczyński
@ 2023-09-11 6:03 ` Zbigniew Kempczyński
2023-09-11 9:58 ` Kamil Konieczny
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 3/9] lib/intel_compute: Reorganize the code for i915 version preparation Zbigniew Kempczyński
` (10 subsequent siblings)
12 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
Allow selectively turn on/off compute tests on both i915 and xe
drivers.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Acked-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---
lib/intel_compute.c | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index c0f5b1c937..9766dc127b 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -445,17 +445,27 @@ static void tgl_compute_exec(int fd, const unsigned char *kernel,
}
/*
- * Generic code
+ * Compatibility flags.
+ *
+ * There will be some time period in which both drivers (i915 and xe)
+ * will support compute runtime tests. Lets define compat flags to allow
+ * the code to be shared between two drivers allowing disabling this in
+ * the future.
*/
+#define COMPAT_FLAG(f) (1 << (f))
+#define COMPAT_I915 COMPAT_FLAG(INTEL_DRIVER_I915)
+#define COMPAT_XE COMPAT_FLAG(INTEL_DRIVER_XE)
static const struct {
unsigned int ip_ver;
void (*compute_exec)(int fd, const unsigned char *kernel,
unsigned int size);
+ uint32_t compat;
} intel_compute_batches[] = {
{
.ip_ver = IP_VER(12, 0),
.compute_exec = tgl_compute_exec,
+ .compat = COMPAT_I915 | COMPAT_XE,
},
};
@@ -464,6 +474,7 @@ bool run_intel_compute_kernel(int fd)
unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd));
unsigned int batch;
const struct intel_compute_kernels *kernels = intel_compute_square_kernels;
+ enum intel_driver driver = get_intel_driver(fd);
for (batch = 0; batch < ARRAY_SIZE(intel_compute_batches); batch++) {
if (ip_ver == intel_compute_batches[batch].ip_ver)
@@ -472,6 +483,12 @@ bool run_intel_compute_kernel(int fd)
if (batch == ARRAY_SIZE(intel_compute_batches))
return false;
+ if (!(COMPAT_FLAG(driver) & intel_compute_batches[batch].compat)) {
+ igt_debug("driver flag: %x\n", COMPAT_FLAG(driver));
+ igt_debug("compat flag: %x\n", intel_compute_batches[batch].compat);
+ return false;
+ }
+
while (kernels->kernel) {
if (ip_ver == kernels->ip_ver)
break;
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t v3 3/9] lib/intel_compute: Reorganize the code for i915 version preparation
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 1/9] lib/intel_compute: Migrate xe_compute library to intel_compute Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 2/9] lib/intel_compute: Add compatibility flags for running compute Zbigniew Kempczyński
@ 2023-09-11 6:03 ` Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 4/9] lib/intel_compute: Add name field for debugging purposes Zbigniew Kempczyński
` (9 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
There's common code in compute pipeline creation so it's worth to
extract it and create dedicated functions for this purpose.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
---
lib/intel_compute.c | 135 ++++++++++++++++++++++++++++++++++++--------
1 file changed, 110 insertions(+), 25 deletions(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index 9766dc127b..dbef7176d8 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -38,6 +38,95 @@ struct bo_dict_entry {
void *data;
};
+struct bo_execenv {
+ int fd;
+ enum intel_driver driver;
+
+ /* Xe part */
+ uint32_t vm;
+ uint32_t exec_queue;
+};
+
+static void bo_execenv_create(int fd, struct bo_execenv *execenv)
+{
+ igt_assert(execenv);
+
+ memset(execenv, 0, sizeof(*execenv));
+ execenv->fd = fd;
+ execenv->driver = get_intel_driver(fd);
+
+ if (execenv->driver == INTEL_DRIVER_XE) {
+ execenv->vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
+ execenv->exec_queue = xe_exec_queue_create_class(fd, execenv->vm,
+ DRM_XE_ENGINE_CLASS_RENDER);
+ }
+}
+
+static void bo_execenv_destroy(struct bo_execenv *execenv)
+{
+ igt_assert(execenv);
+
+ if (execenv->driver == INTEL_DRIVER_XE) {
+ xe_vm_destroy(execenv->fd, execenv->vm);
+ xe_exec_queue_destroy(execenv->fd, execenv->exec_queue);
+ }
+}
+
+static void bo_execenv_bind(struct bo_execenv *execenv,
+ struct bo_dict_entry *bo_dict, int entries)
+{
+ int fd = execenv->fd;
+
+ if (execenv->driver == INTEL_DRIVER_XE) {
+ uint32_t vm = execenv->vm;
+ uint64_t alignment = xe_get_default_alignment(fd);
+ struct drm_xe_sync sync = { 0 };
+
+ sync.flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL;
+ sync.handle = syncobj_create(fd, 0);
+
+ for (int i = 0; i < entries; i++) {
+ bo_dict[i].data = aligned_alloc(alignment, bo_dict[i].size);
+ xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(bo_dict[i].data),
+ bo_dict[i].addr, bo_dict[i].size, &sync, 1);
+ syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
+ memset(bo_dict[i].data, 0, bo_dict[i].size);
+ }
+
+ syncobj_destroy(fd, sync.handle);
+ }
+}
+
+static void bo_execenv_unbind(struct bo_execenv *execenv,
+ struct bo_dict_entry *bo_dict, int entries)
+{
+ int fd = execenv->fd;
+
+ if (execenv->driver == INTEL_DRIVER_XE) {
+ uint32_t vm = execenv->vm;
+ struct drm_xe_sync sync = { 0 };
+
+ sync.flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL;
+ sync.handle = syncobj_create(fd, 0);
+
+ for (int i = 0; i < entries; i++) {
+ xe_vm_unbind_async(fd, vm, 0, 0, bo_dict[i].addr, bo_dict[i].size, &sync, 1);
+ syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
+ free(bo_dict[i].data);
+ }
+
+ syncobj_destroy(fd, sync.handle);
+ }
+}
+
+static void bo_execenv_exec(struct bo_execenv *execenv, uint64_t start_addr)
+{
+ int fd = execenv->fd;
+
+ if (execenv->driver == INTEL_DRIVER_XE)
+ xe_exec_wait(fd, execenv->exec_queue, start_addr);
+}
+
/*
* TGL compatible batch
*/
@@ -388,9 +477,6 @@ static void tgllp_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
static void tgl_compute_exec(int fd, const unsigned char *kernel,
unsigned int size)
{
- uint32_t vm, exec_queue;
- float *dinput;
- struct drm_xe_sync sync = { 0 };
#define TGL_BO_DICT_ENTRIES 7
struct bo_dict_entry bo_dict[TGL_BO_DICT_ENTRIES] = {
{ .addr = ADDR_INDIRECT_OBJECT_BASE + OFFSET_KERNEL}, // kernel
@@ -401,47 +487,46 @@ static void tgl_compute_exec(int fd, const unsigned char *kernel,
{ .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT }, // output
{ .addr = ADDR_BATCH, .size = SIZE_BATCH }, // batch
};
+ struct bo_execenv execenv;
+ float *dinput;
+
+ bo_execenv_create(fd, &execenv);
/* Sets Kernel size */
bo_dict[0].size = ALIGN(size, 0x1000);
- vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
- exec_queue = xe_exec_queue_create_class(fd, vm, DRM_XE_ENGINE_CLASS_RENDER);
- sync.flags = DRM_XE_SYNC_SYNCOBJ | DRM_XE_SYNC_SIGNAL;
- sync.handle = syncobj_create(fd, 0);
+ bo_execenv_bind(&execenv, bo_dict, TGL_BO_DICT_ENTRIES);
- for (int i = 0; i < TGL_BO_DICT_ENTRIES; i++) {
- bo_dict[i].data = aligned_alloc(xe_get_default_alignment(fd), bo_dict[i].size);
- xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(bo_dict[i].data), bo_dict[i].addr, bo_dict[i].size, &sync, 1);
- syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
- memset(bo_dict[i].data, 0, bo_dict[i].size);
- }
memcpy(bo_dict[0].data, kernel, size);
tgllp_create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL);
tgllp_create_surface_state(bo_dict[2].data, ADDR_INPUT, ADDR_OUTPUT);
tgllp_create_indirect_data(bo_dict[3].data, ADDR_INPUT, ADDR_OUTPUT);
+
dinput = (float *)bo_dict[4].data;
srand(time(NULL));
-
for (int i = 0; i < SIZE_DATA; i++)
((float *)dinput)[i] = rand() / (float)RAND_MAX;
- tgllp_compute_exec_compute(bo_dict[6].data, ADDR_SURFACE_STATE_BASE, ADDR_DYNAMIC_STATE_BASE, ADDR_INDIRECT_OBJECT_BASE, OFFSET_INDIRECT_DATA_START);
+ tgllp_compute_exec_compute(bo_dict[6].data,
+ ADDR_SURFACE_STATE_BASE,
+ ADDR_DYNAMIC_STATE_BASE,
+ ADDR_INDIRECT_OBJECT_BASE,
+ OFFSET_INDIRECT_DATA_START);
- xe_exec_wait(fd, exec_queue, ADDR_BATCH);
+ bo_execenv_exec(&execenv, ADDR_BATCH);
- for (int i = 0; i < SIZE_DATA; i++)
- igt_assert(((float *)bo_dict[5].data)[i] == ((float *)bo_dict[4].data)[i] * ((float *) bo_dict[4].data)[i]);
+ for (int i = 0; i < SIZE_DATA; i++) {
+ float f1, f2;
- for (int i = 0; i < TGL_BO_DICT_ENTRIES; i++) {
- xe_vm_unbind_async(fd, vm, 0, 0, bo_dict[i].addr, bo_dict[i].size, &sync, 1);
- syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
- free(bo_dict[i].data);
+ f1 = ((float *) bo_dict[5].data)[i];
+ f2 = ((float *) bo_dict[4].data)[i];
+ if (f1 != f2 * f2)
+ igt_debug("[%4d] f1: %f != %f\n", i, f1, f2 * f2);
+ igt_assert(f1 == f2 * f2);
}
- syncobj_destroy(fd, sync.handle);
- xe_exec_queue_destroy(fd, exec_queue);
- xe_vm_destroy(fd, vm);
+ bo_execenv_unbind(&execenv, bo_dict, TGL_BO_DICT_ENTRIES);
+ bo_execenv_destroy(&execenv);
}
/*
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t v3 4/9] lib/intel_compute: Add name field for debugging purposes
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (2 preceding siblings ...)
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 3/9] lib/intel_compute: Reorganize the code for i915 version preparation Zbigniew Kempczyński
@ 2023-09-11 6:03 ` Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 5/9] lib/intel_compute: Add i915 path in compute library Zbigniew Kempczyński
` (8 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
Debugging without knowledge about object characteristics is hard and
time consuming. Simple name field added for printing binded addresses
and their sizes might speed up development. I experienced this on
extending to DG2 so I decided to permanently add it. But to avoid
annoying output this is limited to igt_debug() which will print
only on user request or on the test failure.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
---
lib/intel_compute.c | 33 ++++++++++++++++++++++++++-------
1 file changed, 26 insertions(+), 7 deletions(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index dbef7176d8..9c4cc451f7 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -36,6 +36,7 @@ struct bo_dict_entry {
uint64_t addr;
uint32_t size;
void *data;
+ const char *name;
};
struct bo_execenv {
@@ -91,6 +92,11 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
bo_dict[i].addr, bo_dict[i].size, &sync, 1);
syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL);
memset(bo_dict[i].data, 0, bo_dict[i].size);
+
+ igt_debug("[i: %2d name: %20s] data: %p, addr: %16llx, size: %llx\n",
+ i, bo_dict[i].name, bo_dict[i].data,
+ (long long)bo_dict[i].addr,
+ (long long)bo_dict[i].size);
}
syncobj_destroy(fd, sync.handle);
@@ -479,13 +485,26 @@ static void tgl_compute_exec(int fd, const unsigned char *kernel,
{
#define TGL_BO_DICT_ENTRIES 7
struct bo_dict_entry bo_dict[TGL_BO_DICT_ENTRIES] = {
- { .addr = ADDR_INDIRECT_OBJECT_BASE + OFFSET_KERNEL}, // kernel
- { .addr = ADDR_DYNAMIC_STATE_BASE, .size = 0x1000}, // dynamic state
- { .addr = ADDR_SURFACE_STATE_BASE, .size = 0x1000}, // surface state
- { .addr = ADDR_INDIRECT_OBJECT_BASE + OFFSET_INDIRECT_DATA_START, .size = 0x10000}, // indirect data
- { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT }, // input
- { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT }, // output
- { .addr = ADDR_BATCH, .size = SIZE_BATCH }, // batch
+ { .addr = ADDR_INDIRECT_OBJECT_BASE + OFFSET_KERNEL,
+ .name = "kernel" },
+ { .addr = ADDR_DYNAMIC_STATE_BASE,
+ .size = 0x1000,
+ .name = "dynamic state base" },
+ { .addr = ADDR_SURFACE_STATE_BASE,
+ .size = 0x1000,
+ .name = "surface state base" },
+ { .addr = ADDR_INDIRECT_OBJECT_BASE + OFFSET_INDIRECT_DATA_START,
+ .size = 0x10000,
+ .name = "indirect data start" },
+ { .addr = ADDR_INPUT,
+ .size = SIZE_BUFFER_INPUT,
+ .name = "input" },
+ { .addr = ADDR_OUTPUT,
+ .size = SIZE_BUFFER_OUTPUT,
+ .name = "output" },
+ { .addr = ADDR_BATCH,
+ .size = SIZE_BATCH,
+ .name = "batch" },
};
struct bo_execenv execenv;
float *dinput;
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t v3 5/9] lib/intel_compute: Add i915 path in compute library
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (3 preceding siblings ...)
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 4/9] lib/intel_compute: Add name field for debugging purposes Zbigniew Kempczyński
@ 2023-09-11 6:03 ` Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 6/9] intel/gem_compute: Add test which runs compute workload on i915 Zbigniew Kempczyński
` (7 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
Add code which fills requirement to run compute workload on i915.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
---
lib/intel_compute.c | 50 ++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 49 insertions(+), 1 deletion(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index 9c4cc451f7..bbe08dff4b 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -8,6 +8,7 @@
#include <stdint.h>
+#include "i915/gem_create.h"
#include "igt.h"
#include "intel_compute.h"
#include "lib/igt_syncobj.h"
@@ -37,6 +38,7 @@ struct bo_dict_entry {
uint32_t size;
void *data;
const char *name;
+ uint32_t handle;
};
struct bo_execenv {
@@ -46,6 +48,10 @@ struct bo_execenv {
/* Xe part */
uint32_t vm;
uint32_t exec_queue;
+
+ /* i915 part */
+ struct drm_i915_gem_execbuffer2 execbuf;
+ struct drm_i915_gem_exec_object2 *obj;
};
static void bo_execenv_create(int fd, struct bo_execenv *execenv)
@@ -100,6 +106,33 @@ static void bo_execenv_bind(struct bo_execenv *execenv,
}
syncobj_destroy(fd, sync.handle);
+ } else {
+ struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
+ struct drm_i915_gem_exec_object2 *obj;
+
+ obj = calloc(entries, sizeof(*obj));
+ execenv->obj = obj;
+
+ for (int i = 0; i < entries; i++) {
+ bo_dict[i].handle = gem_create(fd, bo_dict[i].size);
+ bo_dict[i].data = gem_mmap__device_coherent(fd, bo_dict[i].handle,
+ 0, bo_dict[i].size,
+ PROT_READ | PROT_WRITE);
+ igt_debug("[i: %2d name: %20s] handle: %u, data: %p, addr: %16llx, size: %llx\n",
+ i, bo_dict[i].name,
+ bo_dict[i].handle, bo_dict[i].data,
+ (long long)bo_dict[i].addr,
+ (long long)bo_dict[i].size);
+
+ obj[i].handle = bo_dict[i].handle;
+ obj[i].offset = CANONICAL(bo_dict[i].addr);
+ obj[i].flags = EXEC_OBJECT_PINNED | EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
+ if (bo_dict[i].addr == ADDR_OUTPUT)
+ obj[i].flags |= EXEC_OBJECT_WRITE;
+ }
+
+ execbuf->buffers_ptr = to_user_pointer(obj);
+ execbuf->buffer_count = entries;
}
}
@@ -122,6 +155,12 @@ static void bo_execenv_unbind(struct bo_execenv *execenv,
}
syncobj_destroy(fd, sync.handle);
+ } else {
+ for (int i = 0; i < entries; i++) {
+ gem_close(fd, bo_dict[i].handle);
+ munmap(bo_dict[i].data, bo_dict[i].size);
+ }
+ free(execenv->obj);
}
}
@@ -129,8 +168,17 @@ static void bo_execenv_exec(struct bo_execenv *execenv, uint64_t start_addr)
{
int fd = execenv->fd;
- if (execenv->driver == INTEL_DRIVER_XE)
+ if (execenv->driver == INTEL_DRIVER_XE) {
xe_exec_wait(fd, execenv->exec_queue, start_addr);
+ } else {
+ struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf;
+ struct drm_i915_gem_exec_object2 *obj = execenv->obj;
+ int num_objects = execbuf->buffer_count;
+
+ execbuf->flags = I915_EXEC_RENDER;
+ gem_execbuf(fd, execbuf);
+ gem_sync(fd, obj[num_objects - 1].handle); /* batch handle */
+ }
}
/*
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t v3 6/9] intel/gem_compute: Add test which runs compute workload on i915
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (4 preceding siblings ...)
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 5/9] lib/intel_compute: Add i915 path in compute library Zbigniew Kempczyński
@ 2023-09-11 6:03 ` Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 7/9] lib/intel_compute: Add XeHP implementation of compute pipeline Zbigniew Kempczyński
` (6 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
This test is verbatim copy of xe_compute with driver open exception
(it opens i915 drm fd instead xe). Technically it is possible to
create single test code (open would try DEVICE_INTEL | DEVICE_XE)
but I resisted to that distinguishing i915 and xe version.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
---
tests/intel/gem_compute.c | 46 +++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 47 insertions(+)
create mode 100644 tests/intel/gem_compute.c
diff --git a/tests/intel/gem_compute.c b/tests/intel/gem_compute.c
new file mode 100644
index 0000000000..3813f0f82d
--- /dev/null
+++ b/tests/intel/gem_compute.c
@@ -0,0 +1,46 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+/**
+ * TEST: Check compute-related functionality
+ * Category: Hardware building block
+ * Sub-category: compute
+ * Test category: functionality test
+ * Run type: BAT
+ */
+
+#include <string.h>
+
+#include "igt.h"
+#include "intel_compute.h"
+
+/**
+ * SUBTEST: compute-square
+ * GPU requirement: only works on TGL
+ * Description:
+ * Run an openCL Kernel that returns output[i] = input[i] * input[i],
+ * for an input dataset..
+ * Functionality: compute openCL kernel
+ * TODO: extend test to cover other platforms
+ */
+static void
+test_compute_square(int fd)
+{
+ igt_require_f(run_intel_compute_kernel(fd), "GPU not supported\n");
+}
+
+igt_main
+{
+ int i915;
+
+ igt_fixture
+ i915 = drm_open_driver(DRIVER_INTEL);
+
+ igt_subtest("compute-square")
+ test_compute_square(i915);
+
+ igt_fixture
+ drm_close_driver(i915);
+}
diff --git a/tests/meson.build b/tests/meson.build
index 92729e0c3c..94b1e2e123 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -105,6 +105,7 @@ intel_i915_progs = [
'gem_ccs',
'gem_close',
'gem_close_race',
+ 'gem_compute',
'gem_concurrent_blit',
'gem_cs_tlb',
'gem_ctx_bad_destroy',
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t v3 7/9] lib/intel_compute: Add XeHP implementation of compute pipeline
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (5 preceding siblings ...)
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 6/9] intel/gem_compute: Add test which runs compute workload on i915 Zbigniew Kempczyński
@ 2023-09-11 6:03 ` Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 8/9] lib/intel_compute: Adding pvc compute pipeline implementation Zbigniew Kempczyński
` (5 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
Add pipeline which runs square compute workload on DG2.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
---
lib/intel_compute.c | 287 ++++++++++++++++++++++++++++-
lib/intel_compute_square_kernels.c | 56 ++++++
2 files changed, 342 insertions(+), 1 deletion(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index bbe08dff4b..44235f6b99 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -10,12 +10,15 @@
#include "i915/gem_create.h"
#include "igt.h"
+#include "gen7_media.h"
+#include "gen8_media.h"
#include "intel_compute.h"
#include "lib/igt_syncobj.h"
#include "lib/intel_reg.h"
#include "xe_drm.h"
#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
+#include "xehp_media.h"
#define PIPE_CONTROL 0x7a000004
#define MEDIA_STATE_FLUSH 0x0
@@ -24,7 +27,7 @@
#define SIZE_BATCH 0x1000
#define SIZE_BUFFER_INPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
#define SIZE_BUFFER_OUTPUT MAX(sizeof(float) * SIZE_DATA, 0x1000)
-#define ADDR_BATCH 0x100000
+#define ADDR_BATCH 0x100000UL
#define ADDR_INPUT 0x200000UL
#define ADDR_OUTPUT 0x300000UL
#define ADDR_SURFACE_STATE_BASE 0x400000UL
@@ -33,6 +36,10 @@
#define OFFSET_INDIRECT_DATA_START 0xFFFDF000
#define OFFSET_KERNEL 0xFFFEF000
+#define XEHP_ADDR_GENERAL_STATE_BASE 0x80000000UL
+#define XEHP_ADDR_INSTRUCTION_STATE_BASE 0x90000000UL
+#define XEHP_OFFSET_BINDING_TABLE 0x1000
+
struct bo_dict_entry {
uint64_t addr;
uint32_t size;
@@ -596,6 +603,279 @@ static void tgl_compute_exec(int fd, const unsigned char *kernel,
bo_execenv_destroy(&execenv);
}
+static void xehp_create_indirect_data(uint32_t *addr_bo_buffer_batch,
+ uint64_t addr_input,
+ uint64_t addr_output)
+{
+ int b = 0;
+
+ addr_bo_buffer_batch[b++] = addr_input & 0xffffffff;
+ addr_bo_buffer_batch[b++] = addr_input >> 32;
+ addr_bo_buffer_batch[b++] = addr_output & 0xffffffff;
+ addr_bo_buffer_batch[b++] = addr_output >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000400;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000400;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+}
+
+static void xehp_create_surface_state(uint32_t *addr_bo_buffer_batch,
+ uint64_t addr_input,
+ uint64_t addr_output)
+{
+ int b = 0;
+
+ addr_bo_buffer_batch[b++] = 0x87FDC000;
+ addr_bo_buffer_batch[b++] = 0x06000000;
+ addr_bo_buffer_batch[b++] = 0x001F007F;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00002000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = addr_input & 0xffffffff;
+ addr_bo_buffer_batch[b++] = addr_input >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = 0x87FDC000;
+ addr_bo_buffer_batch[b++] = 0x06000000;
+ addr_bo_buffer_batch[b++] = 0x001F007F;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00002000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = addr_output & 0xffffffff;
+ addr_bo_buffer_batch[b++] = addr_output >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = 0x00001000;
+ addr_bo_buffer_batch[b++] = 0x00001040;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+}
+
+static void xehp_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
+ uint64_t addr_general_state_base,
+ uint64_t addr_surface_state_base,
+ uint64_t addr_dynamic_state_base,
+ uint64_t addr_instruction_state_base,
+ uint64_t offset_indirect_data_start,
+ uint64_t kernel_start_pointer)
+{
+ int b = 0;
+
+ igt_debug("general state base: %lx\n", addr_general_state_base);
+ igt_debug("surface state base: %lx\n", addr_surface_state_base);
+ igt_debug("dynamic state base: %lx\n", addr_dynamic_state_base);
+ igt_debug("instruct base addr: %lx\n", addr_instruction_state_base);
+ igt_debug("bindless base addr: %lx\n", addr_surface_state_base);
+ igt_debug("offset indirect addr: %lx\n", offset_indirect_data_start);
+ igt_debug("kernel start pointer: %lx\n", kernel_start_pointer);
+
+ addr_bo_buffer_batch[b++] = GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
+ PIPELINE_SELECT_GPGPU;
+
+ addr_bo_buffer_batch[b++] = XEHP_STATE_COMPUTE_MODE;
+ addr_bo_buffer_batch[b++] = 0x80180010;
+
+ addr_bo_buffer_batch[b++] = XEHP_CFE_STATE;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x0c008800;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
+ addr_bo_buffer_batch[b++] = 0x00002580;
+ addr_bo_buffer_batch[b++] = 0x00060002;
+
+ addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
+ addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x61;
+ addr_bo_buffer_batch[b++] = addr_general_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x0106c000;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x61;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = (addr_dynamic_state_base & 0xffffffff) | 0x61;
+ addr_bo_buffer_batch[b++] = addr_dynamic_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = (addr_instruction_state_base & 0xffffffff) | 0x61;
+ addr_bo_buffer_batch[b++] = addr_instruction_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = 0x00010001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x61;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00007fbf;
+ addr_bo_buffer_batch[b++] = 0x00000061;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = GEN8_3DSTATE_BINDING_TABLE_POOL_ALLOC | 2;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x6;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00002000;
+ addr_bo_buffer_batch[b++] = 0x001ff000;
+
+ addr_bo_buffer_batch[b++] = XEHP_COMPUTE_WALKER | 0x25;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000040;
+ addr_bo_buffer_batch[b++] = offset_indirect_data_start;
+ addr_bo_buffer_batch[b++] = 0xbe040000;
+ addr_bo_buffer_batch[b++] = 0xffffffff;
+ addr_bo_buffer_batch[b++] = 0x0000003f;
+ addr_bo_buffer_batch[b++] = 0x00000010;
+
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = kernel_start_pointer;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00180000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001080;
+ addr_bo_buffer_batch[b++] = 0x0c000002;
+
+ addr_bo_buffer_batch[b++] = 0x00000008;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001027;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000040;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_BATCH_BUFFER_END;
+}
+
+/**
+ * xehp_compute_exec - run a pipeline compatible with XEHP
+ *
+ * @fd: file descriptor of the opened DRM device
+ * @kernel: GPU Kernel binary to be executed
+ * @size: size of @kernel.
+ */
+static void xehp_compute_exec(int fd, const unsigned char *kernel,
+ unsigned int size)
+{
+#define XEHP_BO_DICT_ENTRIES 9
+ struct bo_dict_entry bo_dict[XEHP_BO_DICT_ENTRIES] = {
+ { .addr = XEHP_ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL,
+ .name = "instr state base"},
+ { .addr = ADDR_DYNAMIC_STATE_BASE,
+ .size = 0x100000,
+ .name = "dynamic state base"},
+ { .addr = ADDR_SURFACE_STATE_BASE,
+ .size = 0x1000,
+ .name = "surface state base"},
+ { .addr = XEHP_ADDR_GENERAL_STATE_BASE + OFFSET_INDIRECT_DATA_START,
+ .size = 0x1000,
+ .name = "indirect object base"},
+ { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT,
+ .name = "addr input"},
+ { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT,
+ .name = "addr output" },
+ { .addr = XEHP_ADDR_GENERAL_STATE_BASE, .size = 0x100000,
+ .name = "general state base" },
+ { .addr = ADDR_SURFACE_STATE_BASE + XEHP_OFFSET_BINDING_TABLE,
+ .size = 0x1000,
+ .name = "binding table" },
+ { .addr = ADDR_BATCH, .size = SIZE_BATCH,
+ .name = "batch" },
+ };
+ struct bo_execenv execenv;
+ float *dinput;
+
+ bo_execenv_create(fd, &execenv);
+
+ /* Sets Kernel size */
+ bo_dict[0].size = ALIGN(size, 0x1000);
+
+ bo_execenv_bind(&execenv, bo_dict, XEHP_BO_DICT_ENTRIES);
+
+ memcpy(bo_dict[0].data, kernel, size);
+ tgllp_create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL);
+ xehp_create_surface_state(bo_dict[2].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_indirect_data(bo_dict[3].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_surface_state(bo_dict[7].data, ADDR_INPUT, ADDR_OUTPUT);
+
+ dinput = (float *)bo_dict[4].data;
+ srand(time(NULL));
+ for (int i = 0; i < SIZE_DATA; i++)
+ ((float *)dinput)[i] = rand() / (float)RAND_MAX;
+
+ xehp_compute_exec_compute(bo_dict[8].data,
+ XEHP_ADDR_GENERAL_STATE_BASE,
+ ADDR_SURFACE_STATE_BASE,
+ ADDR_DYNAMIC_STATE_BASE,
+ XEHP_ADDR_INSTRUCTION_STATE_BASE,
+ OFFSET_INDIRECT_DATA_START,
+ OFFSET_KERNEL);
+
+ bo_execenv_exec(&execenv, ADDR_BATCH);
+
+ for (int i = 0; i < SIZE_DATA; i++) {
+ float f1, f2;
+
+ f1 = ((float *) bo_dict[5].data)[i];
+ f2 = ((float *) bo_dict[4].data)[i];
+ if (f1 != f2 * f2)
+ igt_debug("[%4d] f1: %f != %f\n", i, f1, f2 * f2);
+ igt_assert(f1 == f2 * f2);
+ }
+
+ bo_execenv_unbind(&execenv, bo_dict, XEHP_BO_DICT_ENTRIES);
+ bo_execenv_destroy(&execenv);
+}
+
/*
* Compatibility flags.
*
@@ -619,6 +899,11 @@ static const struct {
.compute_exec = tgl_compute_exec,
.compat = COMPAT_I915 | COMPAT_XE,
},
+ {
+ .ip_ver = IP_VER(12, 55),
+ .compute_exec = xehp_compute_exec,
+ .compat = COMPAT_I915,
+ },
};
bool run_intel_compute_kernel(int fd)
diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
index 9303a41fb3..e572d16c34 100644
--- a/lib/intel_compute_square_kernels.c
+++ b/lib/intel_compute_square_kernels.c
@@ -61,11 +61,67 @@ static const unsigned char tgllp_kernel_square_bin[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
+static const unsigned char xehp_kernel_square_bin[] = {
+ 0x61, 0x31, 0x03, 0x80, 0x20, 0x42, 0x05, 0x7f, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x80, 0x20, 0x82, 0x45, 0x7f,
+ 0x04, 0x00, 0x00, 0x02, 0xc0, 0xff, 0xff, 0xff, 0x40, 0x19, 0x00, 0x80,
+ 0x20, 0x82, 0x45, 0x7f, 0x44, 0x7f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
+ 0x31, 0x92, 0x03, 0x80, 0x00, 0x00, 0x14, 0x08, 0x0c, 0x7f, 0xfa, 0xa7,
+ 0x00, 0x00, 0x10, 0x02, 0x61, 0x20, 0x03, 0x80, 0x20, 0x02, 0x05, 0x03,
+ 0x04, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x09, 0x00, 0x80,
+ 0x20, 0x82, 0x01, 0x80, 0x00, 0x80, 0x00, 0x01, 0xc0, 0x04, 0xc0, 0x04,
+ 0x01, 0x09, 0x00, 0xe8, 0x01, 0x00, 0x11, 0x00, 0x01, 0x22, 0x00, 0xe8,
+ 0x01, 0x00, 0x11, 0x00, 0x41, 0x09, 0x20, 0x22, 0x16, 0x09, 0x11, 0x03,
+ 0x49, 0x00, 0x04, 0xa2, 0x12, 0x09, 0x11, 0x03, 0x01, 0x21, 0x00, 0xe8,
+ 0x01, 0x00, 0x11, 0x00, 0x52, 0x19, 0x04, 0x00, 0x60, 0x06, 0x04, 0x05,
+ 0x04, 0x04, 0x0e, 0x01, 0x04, 0x01, 0x04, 0x07, 0x52, 0x00, 0x24, 0x00,
+ 0x60, 0x06, 0x04, 0x0a, 0x04, 0x04, 0x0e, 0x01, 0x04, 0x02, 0x04, 0x07,
+ 0x70, 0x1a, 0x04, 0x00, 0x60, 0x02, 0x01, 0x00, 0x04, 0x05, 0x10, 0x52,
+ 0x84, 0x08, 0x00, 0x00, 0x70, 0x1a, 0x24, 0x00, 0x60, 0x02, 0x01, 0x00,
+ 0x04, 0x0a, 0x10, 0x52, 0x84, 0x08, 0x00, 0x00, 0x2e, 0x00, 0x05, 0x11,
+ 0x00, 0xc0, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00,
+ 0x69, 0x00, 0x0c, 0x60, 0x02, 0x05, 0x20, 0x00, 0x69, 0x00, 0x0e, 0x66,
+ 0x02, 0x0a, 0x20, 0x00, 0x40, 0x1a, 0x10, 0xa0, 0x32, 0x0c, 0x10, 0x08,
+ 0x40, 0x1a, 0x12, 0xa6, 0x32, 0x0e, 0x10, 0x08, 0x31, 0xa3, 0x04, 0x00,
+ 0x00, 0x00, 0x14, 0x14, 0x94, 0x10, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x06,
+ 0x31, 0x94, 0x24, 0x00, 0x00, 0x00, 0x14, 0x16, 0x94, 0x12, 0x00, 0xfa,
+ 0x00, 0x00, 0x00, 0x06, 0x40, 0x00, 0x0c, 0xa0, 0x4a, 0x0c, 0x10, 0x08,
+ 0x40, 0x00, 0x0e, 0xa6, 0x4a, 0x0e, 0x10, 0x08, 0x41, 0x23, 0x14, 0x20,
+ 0x00, 0x14, 0x00, 0x14, 0x41, 0x24, 0x16, 0x26, 0x00, 0x16, 0x00, 0x16,
+ 0x31, 0xa5, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x95, 0x0c, 0x08, 0xfa,
+ 0x14, 0x14, 0x80, 0x07, 0x31, 0x96, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x95, 0x0e, 0x08, 0xfa, 0x14, 0x16, 0x80, 0x07, 0x2f, 0x00, 0x05, 0x00,
+ 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x61, 0x00, 0x7f, 0x64, 0x00, 0x03, 0x10, 0x00, 0x31, 0x09, 0x03, 0x80,
+ 0x04, 0x00, 0x00, 0x00, 0x0c, 0x7f, 0x20, 0x30, 0x00, 0x00, 0x00, 0x00,
+ 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
const struct intel_compute_kernels intel_compute_square_kernels[] = {
{
.ip_ver = IP_VER(12, 0),
.size = sizeof(tgllp_kernel_square_bin),
.kernel = tgllp_kernel_square_bin,
},
+ {
+ .ip_ver = IP_VER(12, 55),
+ .size = sizeof(xehp_kernel_square_bin),
+ .kernel = xehp_kernel_square_bin,
+ },
{}
};
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t v3 8/9] lib/intel_compute: Adding pvc compute pipeline implementation
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (6 preceding siblings ...)
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 7/9] lib/intel_compute: Add XeHP implementation of compute pipeline Zbigniew Kempczyński
@ 2023-09-11 6:03 ` Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 9/9] tests/gem|xe_compute: Update documentation regarding test requirements Zbigniew Kempczyński
` (4 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
Add square compute pipeline which works on PVC. Currently limited
to Xe driver.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
---
lib/intel_compute.c | 218 ++++++++++++++++++++++++++++-
lib/intel_compute_square_kernels.c | 39 ++++++
2 files changed, 256 insertions(+), 1 deletion(-)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index 44235f6b99..9900d6f757 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -70,9 +70,18 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv)
execenv->driver = get_intel_driver(fd);
if (execenv->driver == INTEL_DRIVER_XE) {
+ uint16_t engine_class;
+ uint32_t devid = intel_get_drm_devid(fd);
+ const struct intel_device_info *info = intel_get_device_info(devid);
+
+ if (info->graphics_ver >= 12 && info->graphics_rel < 60)
+ engine_class = DRM_XE_ENGINE_CLASS_RENDER;
+ else
+ engine_class = DRM_XE_ENGINE_CLASS_COMPUTE;
+
execenv->vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
execenv->exec_queue = xe_exec_queue_create_class(fd, execenv->vm,
- DRM_XE_ENGINE_CLASS_RENDER);
+ engine_class);
}
}
@@ -876,6 +885,208 @@ static void xehp_compute_exec(int fd, const unsigned char *kernel,
bo_execenv_destroy(&execenv);
}
+static void xehpc_create_indirect_data(uint32_t *addr_bo_buffer_batch,
+ uint64_t addr_input,
+ uint64_t addr_output)
+{
+ int b = 0;
+
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000400;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = addr_input & 0xffffffff;
+ addr_bo_buffer_batch[b++] = addr_input >> 32;
+ addr_bo_buffer_batch[b++] = addr_output & 0xffffffff;
+ addr_bo_buffer_batch[b++] = addr_output >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000400;
+ addr_bo_buffer_batch[b++] = 0x00000400;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+}
+
+static void xehpc_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
+ uint64_t addr_general_state_base,
+ uint64_t addr_surface_state_base,
+ uint64_t addr_dynamic_state_base,
+ uint64_t addr_instruction_state_base,
+ uint64_t offset_indirect_data_start,
+ uint64_t kernel_start_pointer)
+{
+ int b = 0;
+
+ igt_debug("general state base: %lx\n", addr_general_state_base);
+ igt_debug("surface state base: %lx\n", addr_surface_state_base);
+ igt_debug("dynamic state base: %lx\n", addr_dynamic_state_base);
+ igt_debug("instruct base addr: %lx\n", addr_instruction_state_base);
+ igt_debug("bindless base addr: %lx\n", addr_surface_state_base);
+ igt_debug("offset indirect addr: %lx\n", offset_indirect_data_start);
+ igt_debug("kernel start pointer: %lx\n", kernel_start_pointer);
+
+ addr_bo_buffer_batch[b++] = GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
+ PIPELINE_SELECT_GPGPU;
+
+ addr_bo_buffer_batch[b++] = XEHP_STATE_COMPUTE_MODE;
+ addr_bo_buffer_batch[b++] = 0xE0186010;
+
+ addr_bo_buffer_batch[b++] = XEHP_CFE_STATE | 0x4;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x10008800;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
+ addr_bo_buffer_batch[b++] = 0x00002580;
+ addr_bo_buffer_batch[b++] = 0x00060002;
+
+ addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
+ addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x41;
+ addr_bo_buffer_batch[b++] = addr_general_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00044000;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x41;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = (addr_dynamic_state_base & 0xffffffff) | 0x41;
+ addr_bo_buffer_batch[b++] = addr_dynamic_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = (addr_instruction_state_base & 0xffffffff) | 0x41;
+ addr_bo_buffer_batch[b++] = addr_instruction_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = 0x00010001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x41;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00007fbf;
+ addr_bo_buffer_batch[b++] = 0x00000041;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = GEN8_3DSTATE_BINDING_TABLE_POOL_ALLOC | 2;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = XEHP_COMPUTE_WALKER | 0x25;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000040;
+ addr_bo_buffer_batch[b++] = offset_indirect_data_start;
+ addr_bo_buffer_batch[b++] = 0xbe040000;
+ addr_bo_buffer_batch[b++] = 0xffffffff;
+ addr_bo_buffer_batch[b++] = 0x0000003f;
+ addr_bo_buffer_batch[b++] = 0x00000010;
+
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = kernel_start_pointer;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00180000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x0c000020;
+
+ addr_bo_buffer_batch[b++] = 0x00000008;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001047;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000040;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_BATCH_BUFFER_END;
+}
+
+/**
+ * xehpc_compute_exec - run a pipeline compatible with XEHP
+ *
+ * @fd: file descriptor of the opened DRM device
+ * @kernel: GPU Kernel binary to be executed
+ * @size: size of @kernel.
+ */
+static void xehpc_compute_exec(int fd, const unsigned char *kernel,
+ unsigned int size)
+{
+#define XEHPC_BO_DICT_ENTRIES 6
+ struct bo_dict_entry bo_dict[XEHP_BO_DICT_ENTRIES] = {
+ { .addr = XEHP_ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL,
+ .name = "instr state base"},
+ { .addr = XEHP_ADDR_GENERAL_STATE_BASE + OFFSET_INDIRECT_DATA_START,
+ .size = 0x10000,
+ .name = "indirect object base"},
+ { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT,
+ .name = "addr input"},
+ { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT,
+ .name = "addr output" },
+ { .addr = XEHP_ADDR_GENERAL_STATE_BASE, .size = 0x10000,
+ .name = "general state base" },
+ { .addr = ADDR_BATCH, .size = SIZE_BATCH,
+ .name = "batch" },
+ };
+ struct bo_execenv execenv;
+ float *dinput;
+
+ bo_execenv_create(fd, &execenv);
+
+ /* Sets Kernel size */
+ bo_dict[0].size = ALIGN(size, 0x1000);
+
+ bo_execenv_bind(&execenv, bo_dict, XEHPC_BO_DICT_ENTRIES);
+
+ memcpy(bo_dict[0].data, kernel, size);
+ xehpc_create_indirect_data(bo_dict[1].data, ADDR_INPUT, ADDR_OUTPUT);
+
+ dinput = (float *)bo_dict[2].data;
+ srand(time(NULL));
+ for (int i = 0; i < SIZE_DATA; i++)
+ ((float *)dinput)[i] = rand() / (float)RAND_MAX;
+
+ xehpc_compute_exec_compute(bo_dict[5].data,
+ XEHP_ADDR_GENERAL_STATE_BASE,
+ ADDR_SURFACE_STATE_BASE,
+ ADDR_DYNAMIC_STATE_BASE,
+ XEHP_ADDR_INSTRUCTION_STATE_BASE,
+ OFFSET_INDIRECT_DATA_START,
+ OFFSET_KERNEL);
+
+ bo_execenv_exec(&execenv, ADDR_BATCH);
+
+ for (int i = 0; i < SIZE_DATA; i++) {
+ float f1, f2;
+
+ f1 = ((float *) bo_dict[3].data)[i];
+ f2 = ((float *) bo_dict[2].data)[i];
+ if (f1 != f2 * f2)
+ igt_debug("[%4d] f1: %f != %f\n", i, f1, f2 * f2);
+ igt_assert(f1 == f2 * f2);
+ }
+
+ bo_execenv_unbind(&execenv, bo_dict, XEHPC_BO_DICT_ENTRIES);
+ bo_execenv_destroy(&execenv);
+}
+
/*
* Compatibility flags.
*
@@ -904,6 +1115,11 @@ static const struct {
.compute_exec = xehp_compute_exec,
.compat = COMPAT_I915,
},
+ {
+ .ip_ver = IP_VER(12, 60),
+ .compute_exec = xehpc_compute_exec,
+ .compat = COMPAT_XE,
+ },
};
bool run_intel_compute_kernel(int fd)
diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
index e572d16c34..d094c23ccb 100644
--- a/lib/intel_compute_square_kernels.c
+++ b/lib/intel_compute_square_kernels.c
@@ -112,6 +112,40 @@ static const unsigned char xehp_kernel_square_bin[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
+static const unsigned char xehpc_kernel_square_bin[] = {
+ 0x65, 0xa1, 0x00, 0x80, 0x20, 0x82, 0x05, 0x7f, 0x04, 0x00, 0x00, 0x02,
+ 0xc0, 0xff, 0xff, 0xff, 0x40, 0x19, 0x00, 0x80, 0x20, 0x82, 0x05, 0x7f,
+ 0x04, 0x7f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x31, 0x22, 0x03, 0x00,
+ 0x00, 0x00, 0x0c, 0x04, 0x8f, 0x7f, 0x00, 0xfa, 0x03, 0x00, 0x34, 0xf6,
+ 0x66, 0x09, 0x84, 0xb4, 0x80, 0x80, 0x00, 0x4c, 0x41, 0x22, 0x03, 0x80,
+ 0x60, 0x06, 0x01, 0x20, 0xd4, 0x04, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00,
+ 0x53, 0x80, 0x00, 0x80, 0x60, 0x06, 0x05, 0x02, 0xd4, 0x04, 0x00, 0x06,
+ 0x14, 0x00, 0x00, 0x00, 0x52, 0x19, 0x14, 0x00, 0x60, 0x06, 0x04, 0x05,
+ 0x04, 0x02, 0x0e, 0x01, 0x04, 0x01, 0x04, 0x04, 0x70, 0x19, 0x14, 0x00,
+ 0x20, 0x02, 0x01, 0x00, 0x04, 0x05, 0x10, 0x52, 0xc4, 0x04, 0x00, 0x00,
+ 0x2e, 0x00, 0x14, 0x14, 0x00, 0xc0, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00,
+ 0x78, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x6c, 0x13, 0x05, 0x00, 0x00,
+ 0x61, 0x00, 0x08, 0x6c, 0x15, 0x06, 0x00, 0x00, 0x69, 0x1a, 0x00, 0xf9,
+ 0x17, 0x13, 0x20, 0x00, 0x69, 0x1a, 0x08, 0xf9, 0x19, 0x15, 0x20, 0x00,
+ 0x40, 0x1a, 0x00, 0x20, 0x07, 0x17, 0x60, 0x04, 0x40, 0x1a, 0x08, 0x20,
+ 0x09, 0x19, 0x60, 0x04, 0x31, 0x23, 0x15, 0x00, 0x00, 0x00, 0x14, 0x0b,
+ 0x24, 0x07, 0x00, 0xfb, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x20,
+ 0x0f, 0x17, 0x30, 0x04, 0x40, 0x00, 0x08, 0x20, 0x11, 0x19, 0x30, 0x04,
+ 0x41, 0x83, 0x14, 0x2c, 0x0d, 0x0b, 0x10, 0x0b, 0x31, 0x24, 0x15, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x24, 0x0f, 0x08, 0xfb, 0x14, 0x0d, 0x00, 0x00,
+ 0x2f, 0x00, 0x14, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x10, 0x00, 0x00, 0x00, 0x61, 0x00, 0x1c, 0x34, 0x7f, 0x00, 0x00, 0x00,
+ 0x31, 0x11, 0x0c, 0x80, 0x04, 0x00, 0x00, 0x00, 0x0c, 0x7f, 0x20, 0x30,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+};
+
const struct intel_compute_kernels intel_compute_square_kernels[] = {
{
.ip_ver = IP_VER(12, 0),
@@ -123,5 +157,10 @@ const struct intel_compute_kernels intel_compute_square_kernels[] = {
.size = sizeof(xehp_kernel_square_bin),
.kernel = xehp_kernel_square_bin,
},
+ {
+ .ip_ver = IP_VER(12, 60),
+ .size = sizeof(xehpc_kernel_square_bin),
+ .kernel = xehpc_kernel_square_bin,
+ },
{}
};
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] [PATCH i-g-t v3 9/9] tests/gem|xe_compute: Update documentation regarding test requirements
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (7 preceding siblings ...)
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 8/9] lib/intel_compute: Adding pvc compute pipeline implementation Zbigniew Kempczyński
@ 2023-09-11 6:03 ` Zbigniew Kempczyński
2023-09-11 6:57 ` [igt-dev] ✓ CI.xeBAT: success for Extend compute square to i915 and Xe (rev3) Patchwork
` (3 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 6:03 UTC (permalink / raw)
To: igt-dev
Currently test is prepared to run on DG2, ATS-M and PVC so lets
reflect this in the documentation tags.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
---
tests/intel/gem_compute.c | 3 +--
tests/intel/xe_compute.c | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/tests/intel/gem_compute.c b/tests/intel/gem_compute.c
index 3813f0f82d..8d0214c4d3 100644
--- a/tests/intel/gem_compute.c
+++ b/tests/intel/gem_compute.c
@@ -18,12 +18,11 @@
/**
* SUBTEST: compute-square
- * GPU requirement: only works on TGL
+ * GPU requirement: TGL, DG2, ATS-M
* Description:
* Run an openCL Kernel that returns output[i] = input[i] * input[i],
* for an input dataset..
* Functionality: compute openCL kernel
- * TODO: extend test to cover other platforms
*/
static void
test_compute_square(int fd)
diff --git a/tests/intel/xe_compute.c b/tests/intel/xe_compute.c
index c3a6625960..8cd26b097c 100644
--- a/tests/intel/xe_compute.c
+++ b/tests/intel/xe_compute.c
@@ -19,12 +19,11 @@
/**
* SUBTEST: compute-square
- * GPU requirement: only works on TGL
+ * GPU requirement: TGL, PVC
* Description:
* Run an openCL Kernel that returns output[i] = input[i] * input[i],
* for an input dataset..
* Functionality: compute openCL kernel
- * TODO: extend test to cover other platforms
*/
static void
test_compute_square(int fd)
--
2.34.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Extend compute square to i915 and Xe (rev3)
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (8 preceding siblings ...)
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 9/9] tests/gem|xe_compute: Update documentation regarding test requirements Zbigniew Kempczyński
@ 2023-09-11 6:57 ` Patchwork
2023-09-11 7:04 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-09-11 6:57 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3119 bytes --]
== Series Details ==
Series: Extend compute square to i915 and Xe (rev3)
URL : https://patchwork.freedesktop.org/series/122568/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7478_BAT -> XEIGTPW_9760_BAT
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with XEIGTPW_9760_BAT need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_9760_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_9760_BAT:
### IGT changes ###
#### Warnings ####
* igt@xe_compute@compute-square:
- bat-atsm-2: [SKIP][1] ([Intel XE#252]) -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7478/bat-atsm-2/igt@xe_compute@compute-square.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9760/bat-atsm-2/igt@xe_compute@compute-square.html
- bat-dg2-oem2: [SKIP][3] ([Intel XE#252]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7478/bat-dg2-oem2/igt@xe_compute@compute-square.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9760/bat-dg2-oem2/igt@xe_compute@compute-square.html
Known issues
------------
Here are the changes found in XEIGTPW_9760_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][5] -> [FAIL][6] ([Intel XE#480]) +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7478/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9760/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
#### Possible fixes ####
* igt@xe_compute@compute-square:
- bat-pvc-2: [SKIP][7] ([Intel XE#252]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7478/bat-pvc-2/igt@xe_compute@compute-square.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9760/bat-pvc-2/igt@xe_compute@compute-square.html
[Intel XE#252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/252
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
Build changes
-------------
* IGT: IGT_7478 -> IGTPW_9760
* Linux: xe-364-e51e857ffad411e1b78821866e9f02187345a11a -> xe-365-0533b5d42b2f8ec916646c10715ac45215e87689
IGTPW_9760: 9760
IGT_7478: 605d1288086602b23d0d73fee5022dcd329d9d3e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-364-e51e857ffad411e1b78821866e9f02187345a11a: e51e857ffad411e1b78821866e9f02187345a11a
xe-365-0533b5d42b2f8ec916646c10715ac45215e87689: 0533b5d42b2f8ec916646c10715ac45215e87689
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9760/index.html
[-- Attachment #2: Type: text/html, Size: 3930 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Extend compute square to i915 and Xe (rev3)
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (9 preceding siblings ...)
2023-09-11 6:57 ` [igt-dev] ✓ CI.xeBAT: success for Extend compute square to i915 and Xe (rev3) Patchwork
@ 2023-09-11 7:04 ` Patchwork
2023-09-11 8:17 ` Zbigniew Kempczyński
2023-09-11 10:09 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-09-11 12:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
12 siblings, 1 reply; 18+ messages in thread
From: Patchwork @ 2023-09-11 7:04 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9120 bytes --]
== Series Details ==
Series: Extend compute square to i915 and Xe (rev3)
URL : https://patchwork.freedesktop.org/series/122568/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13617 -> IGTPW_9760
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9760 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9760, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
Participating hosts (38 -> 39)
------------------------------
Additional (2): fi-kbl-soraka bat-dg2-8
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9760:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-dg2-8: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@gem_exec_suspend@basic-s0@smem.html
Known issues
------------
Here are the changes found in IGTPW_9760 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@gem_mmap_gtt@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#1886] / [i915#7913])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#6645])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#5190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#4215] / [i915#5190])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#4212]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-kbl-soraka: NOTRUN -> [SKIP][13] ([fdo#109271]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-8: NOTRUN -> [SKIP][15] ([fdo#109285])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#5274])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- fi-bsw-nick: [PASS][17] -> [FAIL][18] ([i915#9276])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@cursor_plane_move:
- bat-dg2-8: NOTRUN -> [SKIP][19] ([i915#1072]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_psr@cursor_plane_move.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#3555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#3708])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-8: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#4077]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-8: NOTRUN -> [SKIP][23] ([i915#3291] / [i915#3708]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
- bat-rplp-1: [ABORT][24] ([i915#8668]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7478 -> IGTPW_9760
CI-20190529: 20190529
CI_DRM_13617: 232c052bbad9247620eb164d559c1e0a9eae0353 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9760: 9760
IGT_7478: 605d1288086602b23d0d73fee5022dcd329d9d3e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@gem_compute@compute-square
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
[-- Attachment #2: Type: text/html, Size: 10568 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Extend compute square to i915 and Xe (rev3)
2023-09-11 7:04 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
@ 2023-09-11 8:17 ` Zbigniew Kempczyński
2023-09-11 10:10 ` Yedireswarapu, SaiX Nandan
0 siblings, 1 reply; 18+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-11 8:17 UTC (permalink / raw)
To: igt-dev; +Cc: SaiX Nandan Yedireswarapu
On Mon, Sep 11, 2023 at 07:04:42AM +0000, Patchwork wrote:
> Patch Details
>
> Series: Extend compute square to i915 and Xe (rev3)
> URL: https://patchwork.freedesktop.org/series/122568/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
>
> CI Bug Log - changes from CI_DRM_13617 -> IGTPW_9760
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_9760 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_9760, please notify your bug team
> (lgci.bug.filing@intel.com) to allow them
> to document this new failure mode, which will reduce false positives in
> CI.
>
> External URL:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
>
> Participating hosts (38 -> 39)
>
> Additional (2): fi-kbl-soraka bat-dg2-8
> Missing (1): fi-snb-2520m
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in IGTPW_9760:
>
> IGT changes
>
> Possible regressions
>
> * igt@gem_exec_suspend@basic-s0@smem:
> * bat-dg2-8: NOTRUN -> INCOMPLETE
Unrelated to the change. May I ask for resume full run?
--
Zbigniew
>
> Known issues
>
> Here are the changes found in IGTPW_9760 that come from known issues:
>
> IGT changes
>
> Issues hit
>
> * igt@gem_huc_copy@huc-copy:
>
> * fi-kbl-soraka: NOTRUN -> SKIP (fdo#109271 / i915#2190)
> * igt@gem_lmem_swapping@basic:
>
> * fi-kbl-soraka: NOTRUN -> SKIP (fdo#109271 / i915#4613) +3 other
> tests skip
> * igt@gem_mmap@basic:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4083)
> * igt@gem_mmap_gtt@basic:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4077) +2 other tests skip
> * igt@gem_tiled_pread_basic:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4079) +1 other test skip
> * igt@i915_pm_rps@basic-api:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#6621)
> * igt@i915_selftest@live@gt_pm:
>
> * fi-kbl-soraka: NOTRUN -> DMESG-FAIL (i915#1886 / i915#7913)
> * igt@i915_suspend@basic-s3-without-i915:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#6645)
> * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#5190)
> * igt@kms_addfb_basic@basic-y-tiled-legacy:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4215 / i915#5190)
> * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4212) +7 other tests skip
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>
> * fi-kbl-soraka: NOTRUN -> SKIP (fdo#109271) +8 other tests skip
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4103 / i915#4213) +1 other test
> skip
> * igt@kms_force_connector_basic@force-load-detect:
>
> * bat-dg2-8: NOTRUN -> SKIP (fdo#109285)
> * igt@kms_force_connector_basic@prune-stale-modes:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#5274)
> * igt@kms_frontbuffer_tracking@basic:
>
> * fi-bsw-nick: PASS -> FAIL (i915#9276)
> * igt@kms_psr@cursor_plane_move:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#1072) +3 other tests skip
> * igt@kms_setmode@basic-clone-single-crtc:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#3555)
> * igt@prime_vgem@basic-fence-flip:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#3708)
> * igt@prime_vgem@basic-fence-mmap:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#3708 / i915#4077) +1 other test
> skip
> * igt@prime_vgem@basic-write:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#3291 / i915#3708) +2 other tests
> skip
>
> Possible fixes
>
> * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
> * bat-rplp-1: ABORT (i915#8668) -> PASS
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7478 -> IGTPW_9760
>
> CI-20190529: 20190529
> CI_DRM_13617: 232c052bbad9247620eb164d559c1e0a9eae0353 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_9760: 9760
> IGT_7478: 605d1288086602b23d0d73fee5022dcd329d9d3e @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>
> Testlist changes
>
> +igt@gem_compute@compute-square
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 1/9] lib/intel_compute: Migrate xe_compute library to intel_compute
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 1/9] lib/intel_compute: Migrate xe_compute library to intel_compute Zbigniew Kempczyński
@ 2023-09-11 9:49 ` Kamil Konieczny
0 siblings, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2023-09-11 9:49 UTC (permalink / raw)
To: igt-dev
Hi Zbigniew,
On 2023-09-11 at 08:03:37 +0200, Zbigniew Kempczyński wrote:
> During my work on adding xe-compute support to DG2 I hit some issues
> on Xe driver so instead of limiting workload to Xe only I decided to
> handle i915 as well. Such attitude might be handy on driver feature
> status comparison.
>
> Patch does preparation step to share the code between i915 and Xe.
>
> v2: Add intel_ prefix as compute code is in the library and globally
> visible (Kamil)
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Christoph Manszewski <christoph.manszewski@intel.com>
> Cc: Francois Dugast <francois.dugast@intel.com>
> Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/{xe/xe_compute.c => intel_compute.c} | 21 +++++++++----------
> lib/{xe/xe_compute.h => intel_compute.h} | 12 +++++------
> ...rnels.c => intel_compute_square_kernels.c} | 4 ++--
> lib/meson.build | 4 ++--
> tests/intel/xe_compute.c | 4 ++--
> 5 files changed, 22 insertions(+), 23 deletions(-)
> rename lib/{xe/xe_compute.c => intel_compute.c} (97%)
> rename lib/{xe/xe_compute.h => intel_compute.h} (72%)
> rename lib/{xe/xe_compute_square_kernels.c => intel_compute_square_kernels.c} (97%)
>
> diff --git a/lib/xe/xe_compute.c b/lib/intel_compute.c
> similarity index 97%
> rename from lib/xe/xe_compute.c
> rename to lib/intel_compute.c
> index 3e8112a048..c0f5b1c937 100644
> --- a/lib/xe/xe_compute.c
> +++ b/lib/intel_compute.c
> @@ -9,11 +9,10 @@
> #include <stdint.h>
>
> #include "igt.h"
> -#include "xe_drm.h"
> +#include "intel_compute.h"
> #include "lib/igt_syncobj.h"
> #include "lib/intel_reg.h"
> -
> -#include "xe_compute.h"
> +#include "xe_drm.h"
> #include "xe/xe_ioctl.h"
> #include "xe/xe_query.h"
>
> @@ -453,24 +452,24 @@ static const struct {
> unsigned int ip_ver;
> void (*compute_exec)(int fd, const unsigned char *kernel,
> unsigned int size);
> -} xe_compute_batches[] = {
> +} intel_compute_batches[] = {
> {
> .ip_ver = IP_VER(12, 0),
> .compute_exec = tgl_compute_exec,
> },
> };
>
> -bool run_xe_compute_kernel(int fd)
> +bool run_intel_compute_kernel(int fd)
> {
> unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd));
> unsigned int batch;
> - const struct xe_compute_kernels *kernels = xe_compute_square_kernels;
> + const struct intel_compute_kernels *kernels = intel_compute_square_kernels;
>
> - for (batch = 0; batch < ARRAY_SIZE(xe_compute_batches); batch++) {
> - if (ip_ver == xe_compute_batches[batch].ip_ver)
> + for (batch = 0; batch < ARRAY_SIZE(intel_compute_batches); batch++) {
> + if (ip_ver == intel_compute_batches[batch].ip_ver)
> break;
> }
> - if (batch == ARRAY_SIZE(xe_compute_batches))
> + if (batch == ARRAY_SIZE(intel_compute_batches))
> return false;
>
> while (kernels->kernel) {
> @@ -481,8 +480,8 @@ bool run_xe_compute_kernel(int fd)
> if (!kernels->kernel)
> return 1;
>
> - xe_compute_batches[batch].compute_exec(fd, kernels->kernel,
> - kernels->size);
> + intel_compute_batches[batch].compute_exec(fd, kernels->kernel,
> + kernels->size);
>
> return true;
> }
> diff --git a/lib/xe/xe_compute.h b/lib/intel_compute.h
> similarity index 72%
> rename from lib/xe/xe_compute.h
> rename to lib/intel_compute.h
> index b2e7e98278..ba153f064b 100644
> --- a/lib/xe/xe_compute.h
> +++ b/lib/intel_compute.h
> @@ -6,8 +6,8 @@
> * Francois Dugast <francois.dugast@intel.com>
> */
>
> -#ifndef XE_COMPUTE_H
> -#define XE_COMPUTE_H
> +#ifndef INTEL_COMPUTE_H
> +#define INTEL_COMPUTE_H
>
> /*
> * OpenCL Kernels are generated using:
> @@ -19,14 +19,14 @@
> * For each GPU model desired. A list of supported models can be obtained with: ocloc compile --help
> */
>
> -struct xe_compute_kernels {
> +struct intel_compute_kernels {
> int ip_ver;
> unsigned int size;
> const unsigned char *kernel;
> };
>
> -extern const struct xe_compute_kernels xe_compute_square_kernels[];
> +extern const struct intel_compute_kernels intel_compute_square_kernels[];
>
> -bool run_xe_compute_kernel(int fd);
> +bool run_intel_compute_kernel(int fd);
>
> -#endif /* XE_COMPUTE_H */
> +#endif /* INTEL_COMPUTE_H */
> diff --git a/lib/xe/xe_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
> similarity index 97%
> rename from lib/xe/xe_compute_square_kernels.c
> rename to lib/intel_compute_square_kernels.c
> index f9c07dc778..9303a41fb3 100644
> --- a/lib/xe/xe_compute_square_kernels.c
> +++ b/lib/intel_compute_square_kernels.c
> @@ -8,7 +8,7 @@
> */
>
> #include "intel_chipset.h"
> -#include "lib/xe/xe_compute.h"
> +#include "lib/intel_compute.h"
>
> static const unsigned char tgllp_kernel_square_bin[] = {
> 0x61, 0x00, 0x03, 0x80, 0x20, 0x02, 0x05, 0x03, 0x04, 0x00, 0x10, 0x00,
> @@ -61,7 +61,7 @@ static const unsigned char tgllp_kernel_square_bin[] = {
> 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
> };
>
> -const struct xe_compute_kernels xe_compute_square_kernels[] = {
> +const struct intel_compute_kernels intel_compute_square_kernels[] = {
> {
> .ip_ver = IP_VER(12, 0),
> .size = sizeof(tgllp_kernel_square_bin),
> diff --git a/lib/meson.build b/lib/meson.build
> index 21ea9d5ac4..a45f7d677f 100644
> --- a/lib/meson.build
> +++ b/lib/meson.build
> @@ -58,6 +58,8 @@ lib_sources = [
> 'intel_bufops.c',
> 'intel_chipset.c',
> 'intel_cmds_info.c',
> + 'intel_compute.c',
> + 'intel_compute_square_kernels.c',
> 'intel_ctx.c',
> 'intel_device_info.c',
> 'intel_mmio.c',
> @@ -103,8 +105,6 @@ lib_sources = [
> 'veboxcopy_gen12.c',
> 'igt_msm.c',
> 'igt_dsc.c',
> - 'xe/xe_compute.c',
> - 'xe/xe_compute_square_kernels.c',
> 'xe/xe_gt.c',
> 'xe/xe_ioctl.c',
> 'xe/xe_query.c',
> diff --git a/tests/intel/xe_compute.c b/tests/intel/xe_compute.c
> index 2cf536701a..c3a6625960 100644
> --- a/tests/intel/xe_compute.c
> +++ b/tests/intel/xe_compute.c
> @@ -14,8 +14,8 @@
> #include <string.h>
>
> #include "igt.h"
> +#include "intel_compute.h"
> #include "xe/xe_query.h"
> -#include "xe/xe_compute.h"
>
> /**
> * SUBTEST: compute-square
> @@ -29,7 +29,7 @@
> static void
> test_compute_square(int fd)
> {
> - igt_require_f(run_xe_compute_kernel(fd), "GPU not supported\n");
> + igt_require_f(run_intel_compute_kernel(fd), "GPU not supported\n");
> }
>
> igt_main
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 2/9] lib/intel_compute: Add compatibility flags for running compute
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 2/9] lib/intel_compute: Add compatibility flags for running compute Zbigniew Kempczyński
@ 2023-09-11 9:58 ` Kamil Konieczny
0 siblings, 0 replies; 18+ messages in thread
From: Kamil Konieczny @ 2023-09-11 9:58 UTC (permalink / raw)
To: igt-dev
Hi Zbigniew,
On 2023-09-11 at 08:03:38 +0200, Zbigniew Kempczyński wrote:
> Allow selectively turn on/off compute tests on both i915 and xe
> drivers.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Christoph Manszewski <christoph.manszewski@intel.com>
> Cc: Francois Dugast <francois.dugast@intel.com>
> Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
> Acked-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
> lib/intel_compute.c | 19 ++++++++++++++++++-
> 1 file changed, 18 insertions(+), 1 deletion(-)
>
> diff --git a/lib/intel_compute.c b/lib/intel_compute.c
> index c0f5b1c937..9766dc127b 100644
> --- a/lib/intel_compute.c
> +++ b/lib/intel_compute.c
> @@ -445,17 +445,27 @@ static void tgl_compute_exec(int fd, const unsigned char *kernel,
> }
>
> /*
> - * Generic code
> + * Compatibility flags.
> + *
> + * There will be some time period in which both drivers (i915 and xe)
> + * will support compute runtime tests. Lets define compat flags to allow
> + * the code to be shared between two drivers allowing disabling this in
> + * the future.
> */
> +#define COMPAT_FLAG(f) (1 << (f))
> +#define COMPAT_I915 COMPAT_FLAG(INTEL_DRIVER_I915)
> +#define COMPAT_XE COMPAT_FLAG(INTEL_DRIVER_XE)
>
> static const struct {
> unsigned int ip_ver;
> void (*compute_exec)(int fd, const unsigned char *kernel,
> unsigned int size);
> + uint32_t compat;
> } intel_compute_batches[] = {
> {
> .ip_ver = IP_VER(12, 0),
> .compute_exec = tgl_compute_exec,
> + .compat = COMPAT_I915 | COMPAT_XE,
> },
> };
>
> @@ -464,6 +474,7 @@ bool run_intel_compute_kernel(int fd)
> unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd));
> unsigned int batch;
> const struct intel_compute_kernels *kernels = intel_compute_square_kernels;
> + enum intel_driver driver = get_intel_driver(fd);
>
> for (batch = 0; batch < ARRAY_SIZE(intel_compute_batches); batch++) {
> if (ip_ver == intel_compute_batches[batch].ip_ver)
> @@ -472,6 +483,12 @@ bool run_intel_compute_kernel(int fd)
> if (batch == ARRAY_SIZE(intel_compute_batches))
> return false;
>
> + if (!(COMPAT_FLAG(driver) & intel_compute_batches[batch].compat)) {
> + igt_debug("driver flag: %x\n", COMPAT_FLAG(driver));
-------------------^
> + igt_debug("compat flag: %x\n", intel_compute_batches[batch].compat);
-------------------^
I would rather write that there are no compute kernel,
then prints flags for them, something like:
igt_debug("no compute kernel found, flags: %x & %x\n", COMPAT_FLAG(driver), intel_compute_batches[batch].compat);
With or without it,
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> + return false;
> + }
> +
> while (kernels->kernel) {
> if (ip_ver == kernels->ip_ver)
> break;
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Extend compute square to i915 and Xe (rev3)
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (10 preceding siblings ...)
2023-09-11 7:04 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
@ 2023-09-11 10:09 ` Patchwork
2023-09-11 12:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-09-11 10:09 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8709 bytes --]
== Series Details ==
Series: Extend compute square to i915 and Xe (rev3)
URL : https://patchwork.freedesktop.org/series/122568/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13617 -> IGTPW_9760
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
Participating hosts (38 -> 39)
------------------------------
Additional (2): fi-kbl-soraka bat-dg2-8
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9760 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-dg2-8: NOTRUN -> [INCOMPLETE][1] ([i915#8797])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@gem_mmap_gtt@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][8] ([i915#1886] / [i915#7913])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#6645])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#5190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#4215] / [i915#5190])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#4212]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-kbl-soraka: NOTRUN -> [SKIP][13] ([fdo#109271]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-8: NOTRUN -> [SKIP][15] ([fdo#109285])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#5274])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- fi-bsw-nick: [PASS][17] -> [FAIL][18] ([i915#9276])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@cursor_plane_move:
- bat-dg2-8: NOTRUN -> [SKIP][19] ([i915#1072]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_psr@cursor_plane_move.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#3555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#3708])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-8: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#4077]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-8: NOTRUN -> [SKIP][23] ([i915#3291] / [i915#3708]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
- bat-rplp-1: [ABORT][24] ([i915#8668]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797
[i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7478 -> IGTPW_9760
CI-20190529: 20190529
CI_DRM_13617: 232c052bbad9247620eb164d559c1e0a9eae0353 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9760: 9760
IGT_7478: 605d1288086602b23d0d73fee5022dcd329d9d3e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@gem_compute@compute-square
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
[-- Attachment #2: Type: text/html, Size: 10145 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Extend compute square to i915 and Xe (rev3)
2023-09-11 8:17 ` Zbigniew Kempczyński
@ 2023-09-11 10:10 ` Yedireswarapu, SaiX Nandan
0 siblings, 0 replies; 18+ messages in thread
From: Yedireswarapu, SaiX Nandan @ 2023-09-11 10:10 UTC (permalink / raw)
To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org
Hi,
Issue re-reported, https://patchwork.freedesktop.org/series/122568/
Thanks,
Y Sai Nandan
-----Original Message-----
From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com>
Sent: Monday, September 11, 2023 1:47 PM
To: igt-dev@lists.freedesktop.org
Cc: Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>
Subject: Re: ✗ Fi.CI.BAT: failure for Extend compute square to i915 and Xe (rev3)
On Mon, Sep 11, 2023 at 07:04:42AM +0000, Patchwork wrote:
> Patch Details
>
> Series: Extend compute square to i915 and Xe (rev3)
> URL: https://patchwork.freedesktop.org/series/122568/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
>
> CI Bug Log - changes from CI_DRM_13617 -> IGTPW_9760
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_9760 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_9760, please notify your bug team
> (lgci.bug.filing@intel.com) to allow them
> to document this new failure mode, which will reduce false positives in
> CI.
>
> External URL:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
>
> Participating hosts (38 -> 39)
>
> Additional (2): fi-kbl-soraka bat-dg2-8
> Missing (1): fi-snb-2520m
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in IGTPW_9760:
>
> IGT changes
>
> Possible regressions
>
> * igt@gem_exec_suspend@basic-s0@smem:
> * bat-dg2-8: NOTRUN -> INCOMPLETE
Unrelated to the change. May I ask for resume full run?
--
Zbigniew
>
> Known issues
>
> Here are the changes found in IGTPW_9760 that come from known issues:
>
> IGT changes
>
> Issues hit
>
> * igt@gem_huc_copy@huc-copy:
>
> * fi-kbl-soraka: NOTRUN -> SKIP (fdo#109271 / i915#2190)
> * igt@gem_lmem_swapping@basic:
>
> * fi-kbl-soraka: NOTRUN -> SKIP (fdo#109271 / i915#4613) +3 other
> tests skip
> * igt@gem_mmap@basic:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4083)
> * igt@gem_mmap_gtt@basic:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4077) +2 other tests skip
> * igt@gem_tiled_pread_basic:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4079) +1 other test skip
> * igt@i915_pm_rps@basic-api:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#6621)
> * igt@i915_selftest@live@gt_pm:
>
> * fi-kbl-soraka: NOTRUN -> DMESG-FAIL (i915#1886 / i915#7913)
> * igt@i915_suspend@basic-s3-without-i915:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#6645)
> * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#5190)
> * igt@kms_addfb_basic@basic-y-tiled-legacy:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4215 / i915#5190)
> * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4212) +7 other tests skip
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>
> * fi-kbl-soraka: NOTRUN -> SKIP (fdo#109271) +8 other tests skip
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#4103 / i915#4213) +1 other test
> skip
> * igt@kms_force_connector_basic@force-load-detect:
>
> * bat-dg2-8: NOTRUN -> SKIP (fdo#109285)
> * igt@kms_force_connector_basic@prune-stale-modes:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#5274)
> * igt@kms_frontbuffer_tracking@basic:
>
> * fi-bsw-nick: PASS -> FAIL (i915#9276)
> * igt@kms_psr@cursor_plane_move:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#1072) +3 other tests skip
> * igt@kms_setmode@basic-clone-single-crtc:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#3555)
> * igt@prime_vgem@basic-fence-flip:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#3708)
> * igt@prime_vgem@basic-fence-mmap:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#3708 / i915#4077) +1 other test
> skip
> * igt@prime_vgem@basic-write:
>
> * bat-dg2-8: NOTRUN -> SKIP (i915#3291 / i915#3708) +2 other tests
> skip
>
> Possible fixes
>
> * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
> * bat-rplp-1: ABORT (i915#8668) -> PASS
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7478 -> IGTPW_9760
>
> CI-20190529: 20190529
> CI_DRM_13617: 232c052bbad9247620eb164d559c1e0a9eae0353 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_9760: 9760
> IGT_7478: 605d1288086602b23d0d73fee5022dcd329d9d3e @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>
> Testlist changes
>
> +igt@gem_compute@compute-square
^ permalink raw reply [flat|nested] 18+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Extend compute square to i915 and Xe (rev3)
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
` (11 preceding siblings ...)
2023-09-11 10:09 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-09-11 12:21 ` Patchwork
12 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2023-09-11 12:21 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 79729 bytes --]
== Series Details ==
Series: Extend compute square to i915 and Xe (rev3)
URL : https://patchwork.freedesktop.org/series/122568/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13617_full -> IGTPW_9760_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9760_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9760_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
Participating hosts (9 -> 10)
------------------------------
Additional (1): shard-rkl0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9760_full:
### IGT changes ###
#### Possible regressions ####
* {igt@gem_compute@compute-square} (NEW):
- shard-dg1: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-16/igt@gem_compute@compute-square.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-tglu: [PASS][2] -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-b:
- shard-tglu: [PASS][4] -> [FAIL][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: [SKIP][6] ([i915#5325]) -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: [SKIP][8] ([i915#5325]) -> [SKIP][9] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-2/igt@gem_ccs@suspend-resume.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-4/igt@gem_ccs@suspend-resume.html
- shard-dg1: [SKIP][10] ([i915#5325]) -> [SKIP][11] +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-16/igt@gem_ccs@suspend-resume.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-18/igt@gem_ccs@suspend-resume.html
- shard-tglu: [SKIP][12] ([i915#5325]) -> [SKIP][13] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-7/igt@gem_ccs@suspend-resume.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-3/igt@gem_ccs@suspend-resume.html
New tests
---------
New tests have been introduced between CI_DRM_13617_full and IGTPW_9760_full:
### New IGT tests (10) ###
* igt@gem_compute@compute-square:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0] s
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-3:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_cursor@primary@pipe-b-dp-4-size-128:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_cursor@primary@pipe-b-dp-4-size-256:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_cursor@primary@pipe-b-dp-4-size-64:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9760_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8411])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-2/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7456])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-6/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7701])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@device_reset@cold-reset-bound.html
* igt@drm_buddy@drm_buddy_test:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8661])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-7/igt@drm_buddy@drm_buddy_test.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8414]) +13 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +20 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8414]) +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-18/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html
* igt@feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#1839])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@feature_discovery@display-2x.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#7697])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html
* {igt@gem_compute@compute-square} (NEW):
- shard-glk: NOTRUN -> [SKIP][23] ([fdo#109271]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-glk2/igt@gem_compute@compute-square.html
- shard-apl: NOTRUN -> [SKIP][24] ([fdo#109271])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-apl6/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][25] ([i915#9283])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#8562])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@hostile:
- shard-mtlp: [PASS][29] -> [ABORT][30] ([i915#9262]) +2 other tests abort
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-6/igt@gem_ctx_persistence@hostile.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-6/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1099]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-snb1/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4771])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-7/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4036])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_fair@basic-throttle:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4473] / [i915#4771])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@submit3:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-7/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-2/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#7697])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][41] ([fdo#109283] / [i915#5107])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-7/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-hang@vcs0:
- shard-mtlp: NOTRUN -> [ABORT][47] ([i915#9262]) +4 other tests abort
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_exec_schedule@preempt-hang@vcs0.html
* igt@gem_exec_schedule@preempt-hang@vecs0:
- shard-mtlp: NOTRUN -> [DMESG-WARN][48] ([i915#9262])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_exec_schedule@preempt-hang@vecs0.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-6/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][54] -> [DMESG-WARN][55] ([i915#4936] / [i915#5493])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html
* igt@gem_mmap_gtt@coherency:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +9 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@gem_mmap_gtt@coherency.html
- shard-rkl: NOTRUN -> [SKIP][59] ([fdo#111656])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@gem_pread@snoop.html
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@gem_pread@snoop.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-12/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4079])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4079])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4885])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-18/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4880])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][76] ([fdo#109289]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-7/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg2: NOTRUN -> [SKIP][77] ([fdo#109289]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-2/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [PASS][78] -> [ABORT][79] ([i915#5566])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-apl7/igt@gen9_exec_parse@allowed-single.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-apl7/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#2527])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-16/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-5/igt@gen9_exec_parse@batch-without-end.html
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#2527])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-7/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@shadow-peek:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-7/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#6412])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-4/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#6590])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-12/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][86] ([fdo#109289])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#1397])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-dg1: [PASS][88] -> [SKIP][89] ([i915#1397]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-13/igt@i915_pm_rpm@dpms-non-lpsp.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#1397])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress.html
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#1397])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#109293])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-6/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][93] ([fdo#109506])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@i915_pm_rpm@pc8-residency.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][94] -> [INCOMPLETE][95] ([i915#7790])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-snb1/igt@i915_pm_rps@reset.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-snb4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#8925])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4387])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-16/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-mtlp: NOTRUN -> [SKIP][98] ([fdo#109303])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][99] -> [FAIL][100] ([fdo#103375])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4212])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#8502]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#8709]) +11 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][104] ([i915#8247]) +3 other tests fail
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][105] ([i915#8247]) +3 other tests fail
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_async_flips@invalid-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6228])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-6/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][107] ([fdo#111614]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([fdo#111614]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#3638])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-13/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6187]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][114] ([fdo#111615]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][115] ([fdo#110723]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#2705])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#3689] / [i915#5354]) +19 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-13/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3886] / [i915#6095]) +9 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#5354] / [i915#6095]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-13/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#3886] / [i915#5354]) +10 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3734] / [i915#5354] / [i915#6095])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +31 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-3/igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#5354]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#5354] / [i915#6095]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-8/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3689] / [i915#5354] / [i915#6095]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-13/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#7213] / [i915#9010]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4087]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-mtlp: NOTRUN -> [SKIP][132] ([fdo#111827])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][133] ([fdo#111827]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +9 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#7828]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#7828]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#7828]) +5 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#7828])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#3555]) +6 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#3299]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#3116] / [i915#3299])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6944]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][143] ([fdo#109279] / [i915#3359])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#3555]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#8814])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#3555])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#3359]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3359])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][149] ([fdo#103375])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3546]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][151] ([fdo#111825])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#4103] / [i915#4213])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][153] ([fdo#109274] / [i915#5354]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][154] ([fdo#109274] / [fdo#111767] / [i915#5354])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][155] -> [FAIL][156] ([i915#2346])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#9227])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#9226] / [i915#9261]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-15/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][160] ([fdo#109274]) +6 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-2/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3637]) +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#8381]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg1: NOTRUN -> [SKIP][163] ([fdo#111767] / [fdo#111825])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-18/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][164] ([fdo#111825]) +9 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-17/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
- shard-snb: NOTRUN -> [DMESG-WARN][165] ([i915#8841]) +8 other tests dmesg-warn
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-dg2: NOTRUN -> [INCOMPLETE][166] ([i915#4839])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@b-edp1:
- shard-mtlp: [PASS][167] -> [DMESG-WARN][168] ([i915#9262]) +2 other tests dmesg-warn
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-5/igt@kms_flip@flip-vs-suspend@b-edp1.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#2672]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8810]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#2672])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#8708]) +15 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#5354]) +54 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#5460])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#8708]) +4 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1825]) +29 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3023]) +6 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#3458]) +28 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825] / [i915#1825]) +12 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][180] ([fdo#109280])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8708]) +7 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#3458]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8228])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-2/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8228]) +4 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#4816])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#8821])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][187] ([i915#8292])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#5176]) +7 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#5176]) +7 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#5176]) +3 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#5176]) +27 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#5235]) +15 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
- shard-snb: NOTRUN -> [SKIP][193] ([fdo#109271]) +225 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-snb6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#5235]) +11 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#5235]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#5235]) +15 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#658])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#658]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#1072]) +5 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-1/igt@kms_psr@psr2_dpms.html
- shard-tglu: NOTRUN -> [SKIP][200] ([fdo#110189])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-5/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@sprite_blt:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#1072])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-19/igt@kms_psr@sprite_blt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#5289])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#5289])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#5190]) +10 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][205] ([fdo#111615] / [i915#5289])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][206] ([fdo#111615] / [i915#5289])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_cmdline:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#8661])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@kms_selftest@drm_cmdline.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#4098])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][209] ([IGT#2] / [i915#6493])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-18/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8623])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@pipe-d-wait-busy-hang:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#4070] / [i915#533] / [i915#6768])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy-hang.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8808])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-4/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-fb-id:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#2437])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#2436])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: [PASS][215] -> [FAIL][216] ([i915#5234])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@perf_pmu@all-busy-idle-check-all.html
- shard-dg1: [PASS][217] -> [FAIL][218] ([i915#5234])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@rc6-all-gts:
- shard-mtlp: NOTRUN -> [INCOMPLETE][219] ([i915#9268])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#8516])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-17/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][221] ([fdo#109291])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@prime_udl.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#3708])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#3291] / [i915#3708])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#3708] / [i915#4077])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@prime_vgem@coherency-gtt.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-tglu: NOTRUN -> [SKIP][225] ([fdo#109315] / [i915#2575])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-10/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@v3d/v3d_submit_cl@bad-multisync-out-sync:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#2575])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-19/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html
* igt@v3d/v3d_submit_cl@single-out-sync:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#2575]) +8 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@v3d/v3d_submit_cl@single-out-sync.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-rkl: NOTRUN -> [SKIP][228] ([fdo#109315]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#2575]) +16 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#7711])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-7/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#7711]) +7 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-5/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#7711])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-13/igt@vc4/vc4_wait_bo@bad-pad.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#7711]) +5 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@fbdev@write:
- shard-tglu: [FAIL][234] ([i915#7743]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-5/igt@fbdev@write.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-9/igt@fbdev@write.html
- shard-dg1: [FAIL][236] ([i915#7743]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-15/igt@fbdev@write.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-13/igt@fbdev@write.html
- shard-snb: [FAIL][238] ([i915#7743]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-snb7/igt@fbdev@write.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-snb6/igt@fbdev@write.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][240] ([i915#7297]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][242] ([i915#6268]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
- shard-tglu: [FAIL][244] ([i915#6268]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][246] ([i915#5784]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-13/igt@gem_eio@unwedge-stress.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-12/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [FAIL][248] ([i915#2842]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-mtlp: [DMESG-WARN][250] ([i915#9260]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-4/igt@gem_exec_suspend@basic-s4-devices@smem.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-3/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][252] ([i915#5493]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [SKIP][254] ([i915#1397]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][256] ([i915#1397]) -> [PASS][257] +1 other test pass
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [SKIP][258] ([i915#1397]) -> [PASS][259] +1 other test pass
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-16/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][260] ([i915#3743]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-rkl: [FAIL][262] ([i915#3743]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@single-bo@all-pipes:
- shard-mtlp: [DMESG-WARN][264] ([i915#2017]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-7/igt@kms_cursor_legacy@single-bo@all-pipes.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [INCOMPLETE][266] -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html
* {igt@kms_pm_dc@dc9-dpms}:
- shard-tglu: [SKIP][268] ([i915#4281]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* {igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a}:
- shard-dg2: [SKIP][270] ([i915#1937]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][272] ([IGT#2]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-11/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-mtlp: [FAIL][274] -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
- shard-dg2: [FAIL][276] ([fdo#103375]) -> [PASS][277] +4 other tests pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-10/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][278] ([i915#3555] / [i915#5325]) -> [SKIP][279] ([i915#3555]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: [SKIP][280] ([i915#3555] / [i915#5325]) -> [SKIP][281] ([i915#3555]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html
- shard-tglu: [SKIP][282] ([i915#3555] / [i915#5325]) -> [SKIP][283] ([i915#3555]) +2 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][284] ([i915#4098] / [i915#5325]) -> [SKIP][285] ([i915#4098])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-snb: [INCOMPLETE][286] -> [DMESG-WARN][287] ([i915#8841])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-snb4/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_content_protection@mei_interface:
- shard-dg1: [SKIP][288] ([fdo#109300]) -> [SKIP][289] ([i915#7116])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-18/igt@kms_content_protection@mei_interface.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-17/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][290] ([fdo#110189] / [i915#3955]) -> [SKIP][291] ([i915#3955])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][292] ([i915#1072] / [i915#4078]) -> [SKIP][293] ([i915#1072])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg1-12/igt@kms_psr@cursor_plane_move.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg1-15/igt@kms_psr@cursor_plane_move.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][294] ([i915#7331]) -> [INCOMPLETE][295] ([i915#5493])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13617/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7743]: https://gitlab.freedesktop.org/drm/intel/issues/7743
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9260]: https://gitlab.freedesktop.org/drm/intel/issues/9260
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268
[i915#9283]: https://gitlab.freedesktop.org/drm/intel/issues/9283
[i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7478 -> IGTPW_9760
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13617: 232c052bbad9247620eb164d559c1e0a9eae0353 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9760: 9760
IGT_7478: 605d1288086602b23d0d73fee5022dcd329d9d3e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9760/index.html
[-- Attachment #2: Type: text/html, Size: 96812 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2023-09-11 12:21 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-11 6:03 [igt-dev] [PATCH i-g-t v3 0/9] Extend compute square to i915 and Xe Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 1/9] lib/intel_compute: Migrate xe_compute library to intel_compute Zbigniew Kempczyński
2023-09-11 9:49 ` Kamil Konieczny
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 2/9] lib/intel_compute: Add compatibility flags for running compute Zbigniew Kempczyński
2023-09-11 9:58 ` Kamil Konieczny
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 3/9] lib/intel_compute: Reorganize the code for i915 version preparation Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 4/9] lib/intel_compute: Add name field for debugging purposes Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 5/9] lib/intel_compute: Add i915 path in compute library Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 6/9] intel/gem_compute: Add test which runs compute workload on i915 Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 7/9] lib/intel_compute: Add XeHP implementation of compute pipeline Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 8/9] lib/intel_compute: Adding pvc compute pipeline implementation Zbigniew Kempczyński
2023-09-11 6:03 ` [igt-dev] [PATCH i-g-t v3 9/9] tests/gem|xe_compute: Update documentation regarding test requirements Zbigniew Kempczyński
2023-09-11 6:57 ` [igt-dev] ✓ CI.xeBAT: success for Extend compute square to i915 and Xe (rev3) Patchwork
2023-09-11 7:04 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
2023-09-11 8:17 ` Zbigniew Kempczyński
2023-09-11 10:10 ` Yedireswarapu, SaiX Nandan
2023-09-11 10:09 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-09-11 12:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox