* [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark
@ 2024-06-18 17:32 Nirmoy Das
2024-06-18 19:10 ` ✓ CI.xeBAT: success for tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Nirmoy Das @ 2024-06-18 17:32 UTC (permalink / raw)
To: igt-dev; +Cc: kamil.konieczny, Nirmoy Das
Add basic_inst_benchmark to benchmark this basic operation
for BO sizes to get basic understanding how long it takes
bind a BO and run simple GPU command on it.
This not a CI test but rather for developer to identify various
bottleneck/regression in BO binding.
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
tests/intel/xe_exec_store.c | 110 ++++++++++++++++++++++++++++++------
1 file changed, 92 insertions(+), 18 deletions(-)
diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c
index c872c22d5..4b1c619e0 100644
--- a/tests/intel/xe_exec_store.c
+++ b/tests/intel/xe_exec_store.c
@@ -93,15 +93,10 @@ static void persistance_batch(struct data *data, uint64_t addr)
data->addr = batch_addr;
}
-/**
- * SUBTEST: basic-store
- * Description: Basic test to verify store dword.
- * SUBTEST: basic-cond-batch
- * Description: Basic test to verify cond batch end instruction.
- * SUBTEST: basic-all
- * Description: Test to verify store dword on all available engines.
- */
-static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instance *eci)
+
+static void basic_inst_size(int fd, int inst_type,
+ struct drm_xe_engine_class_instance *eci,
+ uint16_t cpu_caching, size_t bo_size)
{
struct drm_xe_sync sync[2] = {
{ .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
@@ -117,7 +112,6 @@ static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instanc
uint32_t exec_queue;
uint32_t bind_engine;
uint32_t syncobj;
- size_t bo_size;
int value = 0x123456;
uint64_t addr = 0x100000;
uint32_t bo = 0;
@@ -127,12 +121,16 @@ static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instanc
sync[1].handle = syncobj;
vm = xe_vm_create(fd, 0, 0);
- bo_size = sizeof(*data);
- bo_size = xe_bb_size(fd, bo_size);
- bo = xe_bo_create(fd, vm, bo_size,
- vram_if_possible(fd, eci->gt_id),
- DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ if (cpu_caching)
+ bo = xe_bo_create_caching(fd, vm, bo_size,
+ vram_if_possible(fd, eci->gt_id),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+ cpu_caching);
+ else
+ bo = xe_bo_create(fd, vm, bo_size,
+ vram_if_possible(fd, eci->gt_id),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
bind_engine = xe_bind_exec_queue_create(fd, vm, 0);
@@ -167,6 +165,66 @@ static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instanc
xe_vm_destroy(fd, vm);
}
+
+/**
+ * SUBTEST: basic-store
+ * Description: Basic test to verify store dword.
+ * SUBTEST: basic-cond-batch
+ * Description: Basic test to verify cond batch end instruction.
+ * SUBTEST: basic-all
+ * Description: Test to verify store dword on all available engines.
+ */
+static void basic_inst(int fd, int inst_type,
+ struct drm_xe_engine_class_instance *eci,
+ uint16_t cpu_caching)
+{
+ size_t bo_size;
+
+ bo_size = sizeof(struct data);
+ bo_size = xe_bb_size(fd, bo_size);
+
+ basic_inst_size(fd, inst_type, eci, cpu_caching, bo_size);
+}
+
+/**
+ * SUBTEST: basic-store-benchmark
+ * Description: Basic test to verify time taken for doing store dword with various size.
+ */
+static void basic_inst_benchmark(int fd, int inst_type,
+ struct drm_xe_engine_class_instance *eci,
+ uint16_t cpu_caching)
+{
+ struct {
+ size_t size;
+ const char *name;
+ } sizes[] = {
+ {SZ_4K, "SZ_4K"},
+ {SZ_2M, "SZ_2M"},
+ {SZ_64M, "SZ_64M"},
+ {SZ_128M, "SZ_128M"},
+ {SZ_256M, "SZ_256M"},
+ {SZ_1G, "SZ_1G"}
+ };
+
+ struct timeval start, end;
+ long seconds, useconds, mtime;
+
+ for (size_t i = 0; i < ARRAY_SIZE(sizes); ++i) {
+ size_t bo_size = sizes[i].size;
+ const char *size_name = sizes[i].name;
+
+ gettimeofday(&start, NULL);
+ basic_inst_size(fd, inst_type, eci, cpu_caching, bo_size);
+ gettimeofday(&end, NULL);
+
+ seconds = end.tv_sec - start.tv_sec;
+ useconds = end.tv_usec - start.tv_usec;
+ mtime = ((seconds) * 1000 + useconds / 1000.0) + 0.5;
+
+ igt_info("Time taken for size %s: %ld ms\n", size_name, mtime);
+ }
+}
+
#define PAGES 1
#define NCACHELINES (4096/64)
/**
@@ -342,12 +400,28 @@ igt_main
igt_subtest("basic-store") {
engine = xe_engine(fd, 1);
- basic_inst(fd, STORE, &engine->instance);
+ basic_inst(fd, COND_BATCH, &engine->instance, 0);
+ }
+
+ igt_subtest_with_dynamic("basic-store-benchmark") {
+ struct dyn {
+ const char *name;
+ int cache;
+ } tests[] = {
+ {"WC", DRM_XE_GEM_CPU_CACHING_WC},
+ {"WB", DRM_XE_GEM_CPU_CACHING_WB}
+ };
+
+ for (int i = 0; i < ARRAY_SIZE(tests); i++) {
+ igt_dynamic_f("%s", tests[i].name);
+ engine = xe_engine(fd, 1);
+ basic_inst_benchmark(fd, STORE, &engine->instance, tests[i].cache);
+ }
}
igt_subtest("basic-cond-batch") {
engine = xe_engine(fd, 1);
- basic_inst(fd, COND_BATCH, &engine->instance);
+ basic_inst(fd, COND_BATCH, &engine->instance, 0);
}
igt_subtest_with_dynamic("basic-all") {
@@ -356,7 +430,7 @@ igt_main
xe_engine_class_string(hwe->engine_class),
hwe->engine_instance,
hwe->gt_id);
- basic_inst(fd, STORE, hwe);
+ basic_inst(fd, STORE, hwe, 0);
}
}
--
2.42.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2)
2024-06-18 17:32 [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark Nirmoy Das
@ 2024-06-18 19:10 ` Patchwork
2024-06-18 19:20 ` ✗ Fi.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-06-18 19:10 UTC (permalink / raw)
To: Nirmoy Das; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1612 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2)
URL : https://patchwork.freedesktop.org/series/135027/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7891_BAT -> XEIGTPW_11276_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11276_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [DMESG-FAIL][1] ([Intel XE#324]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
Build changes
-------------
* IGT: IGT_7891 -> IGTPW_11276
* Linux: xe-1490-5a093f17293ae50283f19372263a7595ed50bc34 -> xe-1491-fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c
IGTPW_11276: 11276
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1490-5a093f17293ae50283f19372263a7595ed50bc34: 5a093f17293ae50283f19372263a7595ed50bc34
xe-1491-fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c: fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/index.html
[-- Attachment #2: Type: text/html, Size: 2189 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2)
2024-06-18 17:32 [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark Nirmoy Das
2024-06-18 19:10 ` ✓ CI.xeBAT: success for tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2) Patchwork
@ 2024-06-18 19:20 ` Patchwork
2024-06-19 9:04 ` ✗ CI.xeFULL: " Patchwork
2024-06-20 14:20 ` [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark Kamil Konieczny
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-06-18 19:20 UTC (permalink / raw)
To: Nirmoy Das; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10114 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2)
URL : https://patchwork.freedesktop.org/series/135027/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14964 -> IGTPW_11276
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11276 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11276, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_11276/index.html
Participating hosts (44 -> 41)
------------------------------
Additional (1): bat-dg2-11
Missing (4): fi-kbl-8809g fi-cfl-8109u fi-snb-2520m fi-bsw-n3050
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11276:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-1:
- bat-dg2-8: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-dg2-8/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-8/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-1.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@core_auth@basic-auth:
- {bat-apl-1}: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-apl-1/igt@core_auth@basic-auth.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-apl-1/igt@core_auth@basic-auth.html
Known issues
------------
Here are the changes found in IGTPW_11276 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-11: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#4212]) +7 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][10] ([i915#5190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4215] / [i915#5190])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#4103] / [i915#4213]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-11: NOTRUN -> [SKIP][14]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][15] ([i915#5274])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#5354])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#1072] / [i915#9732]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][18] ([i915#3555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#3708])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#3708] / [i915#4077]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#3291] / [i915#3708]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-dg2-11/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_module_load@load:
- {bat-apl-1}: [DMESG-WARN][22] ([i915#180]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-apl-1/igt@i915_module_load@load.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-apl-1/igt@i915_module_load@load.html
* igt@i915_selftest@live@execlists:
- fi-glk-j4005: [ABORT][24] -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/fi-glk-j4005/igt@i915_selftest@live@execlists.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/fi-glk-j4005/igt@i915_selftest@live@execlists.html
* igt@kms_addfb_basic@too-high:
- {bat-apl-1}: [DMESG-WARN][26] ([i915#11328]) -> [PASS][27] +39 other tests pass
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-apl-1/igt@kms_addfb_basic@too-high.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-apl-1/igt@kms_addfb_basic@too-high.html
* igt@kms_busy@basic@flip:
- {bat-apl-1}: [DMESG-WARN][28] ([i915#180] / [i915#1982]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-apl-1/igt@kms_busy@basic@flip.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-apl-1/igt@kms_busy@basic@flip.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- {bat-mtlp-9}: [DMESG-WARN][30] ([i915#11009]) -> [PASS][31] +1 other test pass
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-mtlp-9/igt@kms_pm_rpm@basic-pci-d3-state.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/bat-mtlp-9/igt@kms_pm_rpm@basic-pci-d3-state.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10512]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10512
[i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009
[i915#11328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11328
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9224]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9224
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7891 -> IGTPW_11276
CI-20190529: 20190529
CI_DRM_14964: fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11276: 11276
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11276/index.html
[-- Attachment #2: Type: text/html, Size: 11491 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2)
2024-06-18 17:32 [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark Nirmoy Das
2024-06-18 19:10 ` ✓ CI.xeBAT: success for tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2) Patchwork
2024-06-18 19:20 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-06-19 9:04 ` Patchwork
2024-06-20 14:20 ` [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark Kamil Konieczny
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-06-19 9:04 UTC (permalink / raw)
To: Nirmoy Das; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 46661 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2)
URL : https://patchwork.freedesktop.org/series/135027/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7891_full -> XEIGTPW_11276_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11276_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11276_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11276_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_pm@s4-vm-bind-userptr.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [DMESG-WARN][3] ([Intel XE#1214]) -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_module_load@many-reload.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-436/igt@xe_module_load@many-reload.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- {shard-lnl}: [PASS][5] -> [DMESG-WARN][6] +7 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
New tests
---------
New tests have been introduced between XEIGT_7891_full and XEIGTPW_11276_full:
### New IGT tests (2) ###
* igt@xe_exec_store@basic-store-benchmark:
- Statuses : 1 incomplete(s)
- Exec time: [0.0] s
* igt@xe_exec_store@basic-store-benchmark@wc:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_11276_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-set2: [PASS][7] -> [DMESG-WARN][8] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-dg2-set2: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#1214] / [Intel XE#282]) +5 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-dg2-set2: [PASS][11] -> [INCOMPLETE][12] ([Intel XE#1195]) +2 other tests incomplete
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#417])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][15] -> [FAIL][16] ([Intel XE#361]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [PASS][17] -> [FAIL][18] ([Intel XE#771] / [Intel XE#899])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4:
- shard-dg2-set2: [PASS][19] -> [FAIL][20] ([Intel XE#899])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [PASS][21] -> [TIMEOUT][22] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [PASS][23] -> [TIMEOUT][24] ([Intel XE#1473] / [Intel XE#392])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@xe_evict@evict-threads-large.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-dg2-set2: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#1214]) +2 other tests dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-464/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* {igt@xe_exec_store@basic-store-benchmark} (NEW):
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][27] ([Intel XE#1195])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-464/igt@xe_exec_store@basic-store-benchmark.html
* igt@xe_gt_freq@freq_low_max:
- shard-dg2-set2: [PASS][28] -> [FAIL][29] ([Intel XE#1045] / [Intel XE#1204])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_gt_freq@freq_low_max.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-464/igt@xe_gt_freq@freq_low_max.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][30] ([Intel XE#1999]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
#### Possible fixes ####
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: [DMESG-WARN][31] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][33] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][34] +2 other tests pass
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
- shard-dg2-set2: [DMESG-WARN][35] ([Intel XE#1214]) -> [PASS][36] +4 other tests pass
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][37] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [DMESG-WARN][39] ([Intel XE#1214] / [Intel XE#1551]) -> [PASS][40] +1 other test pass
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_vblank@ts-continuation-dpms-suspend.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [TIMEOUT][41] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-large.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [INCOMPLETE][43] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][45] ([Intel XE#1600]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [INCOMPLETE][47] ([Intel XE#1195]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_live_ktest@xe_migrate:
- shard-dg2-set2: [SKIP][49] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_live_ktest@xe_migrate.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pm@s2idle-basic:
- {shard-lnl}: [DMESG-WARN][51] ([Intel XE#1595]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-4/igt@xe_pm@s2idle-basic.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-lnl-8/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [DMESG-WARN][53] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm_residency@gt-c6-on-idle:
- {shard-lnl}: [DMESG-WARN][55] ([Intel XE#1330]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-2/igt@xe_pm_residency@gt-c6-on-idle.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-lnl-1/igt@xe_pm_residency@gt-c6-on-idle.html
* igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer:
- {shard-lnl}: [FAIL][57] ([Intel XE#1081]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-4/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-lnl-2/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: [SKIP][59] ([Intel XE#801]) -> [SKIP][60] ([Intel XE#1201] / [Intel XE#801]) +23 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][61] ([Intel XE#316]) -> [SKIP][62] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][63] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][64] ([Intel XE#316]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_big_fb@linear-8bpp-rotate-270.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: [SKIP][65] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][66] ([Intel XE#1124]) +7 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][67] ([Intel XE#1124]) -> [SKIP][68] ([Intel XE#1124] / [Intel XE#1201]) +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2-set2: [SKIP][69] ([Intel XE#346]) -> [SKIP][70] ([Intel XE#1201] / [Intel XE#346])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][71] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][72] ([Intel XE#367]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: [SKIP][73] ([Intel XE#367]) -> [SKIP][74] ([Intel XE#1201] / [Intel XE#367])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][75] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][76] ([Intel XE#787]) +48 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][77] ([Intel XE#1252]) -> [SKIP][78] ([Intel XE#1201] / [Intel XE#1252])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][79] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][80] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][81] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][82] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][83] ([Intel XE#787]) -> [SKIP][84] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][85] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][86] ([Intel XE#1252])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][87] ([Intel XE#373]) -> [SKIP][88] ([Intel XE#1201] / [Intel XE#373]) +7 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][89] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][90] ([Intel XE#373]) +6 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@mei-interface:
- shard-dg2-set2: [SKIP][91] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][92] ([Intel XE#1201])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_content_protection@mei-interface.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-dpms:
- shard-dg2-set2: [DMESG-WARN][93] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][94] ([Intel XE#282]) +3 other tests dmesg-warn
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_cursor_crc@cursor-dpms.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_cursor_crc@cursor-dpms.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][95] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][96] ([Intel XE#308])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: [SKIP][97] ([Intel XE#308]) -> [SKIP][98] ([Intel XE#1201] / [Intel XE#308])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-433/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-dg2-set2: [DMESG-WARN][99] ([Intel XE#282]) -> [DMESG-WARN][100] ([Intel XE#1214] / [Intel XE#282]) +10 other tests dmesg-warn
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size:
- shard-dg2-set2: [DMESG-WARN][101] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][102] ([Intel XE#282] / [Intel XE#910])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][103] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][104] ([Intel XE#323])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][105] ([Intel XE#1138] / [Intel XE#1201]) -> [SKIP][106] ([Intel XE#1138])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-WARN][107] ([Intel XE#1214]) -> [INCOMPLETE][108] ([Intel XE#1195])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][109] ([Intel XE#455]) -> [SKIP][110] ([Intel XE#1201] / [Intel XE#455]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][111] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][112] ([Intel XE#651]) +19 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][113] ([Intel XE#651]) -> [SKIP][114] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][115] ([Intel XE#658]) -> [SKIP][116] ([Intel XE#1201] / [Intel XE#658])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][117] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][118] ([Intel XE#653]) +19 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][119] ([Intel XE#1158]) -> [SKIP][120] ([Intel XE#1158] / [Intel XE#1201])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg2-set2: [SKIP][121] ([Intel XE#653]) -> [SKIP][122] ([Intel XE#1201] / [Intel XE#653]) +18 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-suspend.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][123] ([Intel XE#1201] / [Intel XE#605]) -> [SKIP][124] ([Intel XE#605])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][125] ([Intel XE#305] / [Intel XE#455]) -> [SKIP][126] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][127] ([Intel XE#305]) -> [SKIP][128] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: [SKIP][129] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][130] ([Intel XE#870])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_pm_backlight@basic-brightness.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][131] ([Intel XE#929]) -> [SKIP][132] ([Intel XE#1201] / [Intel XE#929]) +12 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][133] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][134] ([Intel XE#1122])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][135] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][136] ([Intel XE#929]) +11 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_psr@psr-sprite-plane-onoff.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][138] ([Intel XE#1127])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][139] ([Intel XE#1127]) -> [SKIP][140] ([Intel XE#1127] / [Intel XE#1201])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][142] ([Intel XE#327])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][143] ([Intel XE#327]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][145] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][146] ([Intel XE#455]) +11 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_vrr@flipline.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][147] ([Intel XE#756]) -> [SKIP][148] ([Intel XE#1201] / [Intel XE#756]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][149] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][150] ([Intel XE#756])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_writeback@writeback-invalid-parameters.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][151] ([Intel XE#1123]) -> [SKIP][152] ([Intel XE#1123] / [Intel XE#1201])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][153] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][154] ([Intel XE#1123])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][155] ([Intel XE#288]) -> [SKIP][156] ([Intel XE#1201] / [Intel XE#288]) +14 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-466/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-rebind-prefetch:
- shard-dg2-set2: [SKIP][157] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][158] ([Intel XE#288]) +14 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_exec_fault_mode@once-rebind-prefetch.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-prefetch.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#255]) -> [SKIP][160] ([Intel XE#255])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@xe_huc_copy@huc_copy.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [SKIP][161] ([Intel XE#1192] / [Intel XE#1201]) -> [FAIL][162] ([Intel XE#1999])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_live_ktest@xe_mocs.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-436/igt@xe_live_ktest@xe_mocs.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][163] ([Intel XE#560]) -> [SKIP][164] ([Intel XE#1201] / [Intel XE#560])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_media_fill@media-fill.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-435/igt@xe_media_fill@media-fill.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][165] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][166] ([Intel XE#979])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][167] ([Intel XE#979]) -> [SKIP][168] ([Intel XE#1201] / [Intel XE#979])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][170] ([Intel XE#366])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][171] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [DMESG-WARN][172] ([Intel XE#1551] / [Intel XE#569])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_pm@s3-basic-exec.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][173] ([Intel XE#366]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#366])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-433/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-dg2-set2: [SKIP][175] ([Intel XE#944]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#944])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_query@multigpu-query-invalid-extension.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-434/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][178] ([Intel XE#944]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [DMESG-FAIL][179] ([Intel XE#1760]) -> [SKIP][180] ([Intel XE#1130] / [Intel XE#1201])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2097
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_7891 -> IGTPW_11276
* Linux: xe-1490-5a093f17293ae50283f19372263a7595ed50bc34 -> xe-1491-fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c
IGTPW_11276: 11276
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1490-5a093f17293ae50283f19372263a7595ed50bc34: 5a093f17293ae50283f19372263a7595ed50bc34
xe-1491-fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c: fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11276/index.html
[-- Attachment #2: Type: text/html, Size: 59053 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark
2024-06-18 17:32 [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark Nirmoy Das
` (2 preceding siblings ...)
2024-06-19 9:04 ` ✗ CI.xeFULL: " Patchwork
@ 2024-06-20 14:20 ` Kamil Konieczny
2024-06-20 14:44 ` Nirmoy Das
3 siblings, 1 reply; 6+ messages in thread
From: Kamil Konieczny @ 2024-06-20 14:20 UTC (permalink / raw)
To: igt-dev; +Cc: Nirmoy Das
Hi Nirmoy,
On 2024-06-18 at 19:32:47 +0200, Nirmoy Das wrote:
[PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark
-----------------------------------------------------^
You should use '-', also your subtest has 'store', so:
[PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic-store-benchmark
> Add basic_inst_benchmark to benchmark this basic operation
> for BO sizes to get basic understanding how long it takes
> bind a BO and run simple GPU command on it.
>
> This not a CI test but rather for developer to identify various
> bottleneck/regression in BO binding.
>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> tests/intel/xe_exec_store.c | 110 ++++++++++++++++++++++++++++++------
> 1 file changed, 92 insertions(+), 18 deletions(-)
>
This didn't work on my ATS-M machine:
sudo build/tests/xe_exec_store --r basic-store-benchmark
IGT-Version: 1.28-g64414e4da (x86_64) (Linux: 6.9.0-rc6-xe-public-513ea833c201+ x86_64)
Using IGT_SRANDOM=1718890917 for randomisation
Opened device: /dev/dri/card0
Starting subtest: basic-store-benchmark
Starting dynamic subtest: WC
Dynamic subtest WC: SUCCESS (0.000s)
(xe_exec_store:15881) xe/xe_ioctl-CRITICAL: Test assertion failure function xe_bo_create_caching, file ../lib/xe/xe_ioctl.c:311:
(xe_exec_store:15881) xe/xe_ioctl-CRITICAL: Failed assertion: __xe_bo_create_caching(fd, vm, size, placement, flags, cpu_caching, &handle) == 0
(xe_exec_store:15881) xe/xe_ioctl-CRITICAL: Last errno: 22, Invalid argument
(xe_exec_store:15881) xe/xe_ioctl-CRITICAL: error: -1 != 0
Also, where are benchmarks? Do you print them only after
WC and WB runs? See also one nit below.
> diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c
> index c872c22d5..4b1c619e0 100644
> --- a/tests/intel/xe_exec_store.c
> +++ b/tests/intel/xe_exec_store.c
> @@ -93,15 +93,10 @@ static void persistance_batch(struct data *data, uint64_t addr)
> data->addr = batch_addr;
>
> }
> -/**
> - * SUBTEST: basic-store
> - * Description: Basic test to verify store dword.
> - * SUBTEST: basic-cond-batch
> - * Description: Basic test to verify cond batch end instruction.
> - * SUBTEST: basic-all
> - * Description: Test to verify store dword on all available engines.
> - */
> -static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instance *eci)
> +
> +static void basic_inst_size(int fd, int inst_type,
> + struct drm_xe_engine_class_instance *eci,
> + uint16_t cpu_caching, size_t bo_size)
> {
> struct drm_xe_sync sync[2] = {
> { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
> @@ -117,7 +112,6 @@ static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instanc
> uint32_t exec_queue;
> uint32_t bind_engine;
> uint32_t syncobj;
> - size_t bo_size;
> int value = 0x123456;
> uint64_t addr = 0x100000;
> uint32_t bo = 0;
> @@ -127,12 +121,16 @@ static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instanc
> sync[1].handle = syncobj;
>
> vm = xe_vm_create(fd, 0, 0);
> - bo_size = sizeof(*data);
> - bo_size = xe_bb_size(fd, bo_size);
>
> - bo = xe_bo_create(fd, vm, bo_size,
> - vram_if_possible(fd, eci->gt_id),
> - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
> + if (cpu_caching)
> + bo = xe_bo_create_caching(fd, vm, bo_size,
> + vram_if_possible(fd, eci->gt_id),
> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
> + cpu_caching);
> + else
> + bo = xe_bo_create(fd, vm, bo_size,
> + vram_if_possible(fd, eci->gt_id),
> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
>
> exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
> bind_engine = xe_bind_exec_queue_create(fd, vm, 0);
> @@ -167,6 +165,66 @@ static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instanc
> xe_vm_destroy(fd, vm);
> }
>
> +
Remove extra line.
Regards,
Kamil
> +/**
> + * SUBTEST: basic-store
> + * Description: Basic test to verify store dword.
> + * SUBTEST: basic-cond-batch
> + * Description: Basic test to verify cond batch end instruction.
> + * SUBTEST: basic-all
> + * Description: Test to verify store dword on all available engines.
> + */
> +static void basic_inst(int fd, int inst_type,
> + struct drm_xe_engine_class_instance *eci,
> + uint16_t cpu_caching)
> +{
> + size_t bo_size;
> +
> + bo_size = sizeof(struct data);
> + bo_size = xe_bb_size(fd, bo_size);
> +
> + basic_inst_size(fd, inst_type, eci, cpu_caching, bo_size);
> +}
> +
> +/**
> + * SUBTEST: basic-store-benchmark
> + * Description: Basic test to verify time taken for doing store dword with various size.
> + */
> +static void basic_inst_benchmark(int fd, int inst_type,
> + struct drm_xe_engine_class_instance *eci,
> + uint16_t cpu_caching)
> +{
> + struct {
> + size_t size;
> + const char *name;
> + } sizes[] = {
> + {SZ_4K, "SZ_4K"},
> + {SZ_2M, "SZ_2M"},
> + {SZ_64M, "SZ_64M"},
> + {SZ_128M, "SZ_128M"},
> + {SZ_256M, "SZ_256M"},
> + {SZ_1G, "SZ_1G"}
> + };
> +
> + struct timeval start, end;
> + long seconds, useconds, mtime;
> +
> + for (size_t i = 0; i < ARRAY_SIZE(sizes); ++i) {
> + size_t bo_size = sizes[i].size;
> + const char *size_name = sizes[i].name;
> +
> + gettimeofday(&start, NULL);
> + basic_inst_size(fd, inst_type, eci, cpu_caching, bo_size);
> + gettimeofday(&end, NULL);
> +
> + seconds = end.tv_sec - start.tv_sec;
> + useconds = end.tv_usec - start.tv_usec;
> + mtime = ((seconds) * 1000 + useconds / 1000.0) + 0.5;
> +
> + igt_info("Time taken for size %s: %ld ms\n", size_name, mtime);
> + }
> +}
> +
> #define PAGES 1
> #define NCACHELINES (4096/64)
> /**
> @@ -342,12 +400,28 @@ igt_main
>
> igt_subtest("basic-store") {
> engine = xe_engine(fd, 1);
> - basic_inst(fd, STORE, &engine->instance);
> + basic_inst(fd, COND_BATCH, &engine->instance, 0);
> + }
> +
> + igt_subtest_with_dynamic("basic-store-benchmark") {
> + struct dyn {
> + const char *name;
> + int cache;
> + } tests[] = {
> + {"WC", DRM_XE_GEM_CPU_CACHING_WC},
> + {"WB", DRM_XE_GEM_CPU_CACHING_WB}
> + };
> +
> + for (int i = 0; i < ARRAY_SIZE(tests); i++) {
> + igt_dynamic_f("%s", tests[i].name);
> + engine = xe_engine(fd, 1);
> + basic_inst_benchmark(fd, STORE, &engine->instance, tests[i].cache);
> + }
> }
>
> igt_subtest("basic-cond-batch") {
> engine = xe_engine(fd, 1);
> - basic_inst(fd, COND_BATCH, &engine->instance);
> + basic_inst(fd, COND_BATCH, &engine->instance, 0);
> }
>
> igt_subtest_with_dynamic("basic-all") {
> @@ -356,7 +430,7 @@ igt_main
> xe_engine_class_string(hwe->engine_class),
> hwe->engine_instance,
> hwe->gt_id);
> - basic_inst(fd, STORE, hwe);
> + basic_inst(fd, STORE, hwe, 0);
> }
> }
>
> --
> 2.42.0
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark
2024-06-20 14:20 ` [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark Kamil Konieczny
@ 2024-06-20 14:44 ` Nirmoy Das
0 siblings, 0 replies; 6+ messages in thread
From: Nirmoy Das @ 2024-06-20 14:44 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev
[-- Attachment #1: Type: text/plain, Size: 8241 bytes --]
Hi Kamil,
On 6/20/2024 4:20 PM, Kamil Konieczny wrote:
> Hi Nirmoy,
> On 2024-06-18 at 19:32:47 +0200, Nirmoy Das wrote:
>
> [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark
> -----------------------------------------------------^
>
> You should use '-', also your subtest has 'store', so:
>
> [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic-store-benchmark
Will do that
>
>> Add basic_inst_benchmark to benchmark this basic operation
>> for BO sizes to get basic understanding how long it takes
>> bind a BO and run simple GPU command on it.
>>
>> This not a CI test but rather for developer to identify various
>> bottleneck/regression in BO binding.
>>
>> Signed-off-by: Nirmoy Das<nirmoy.das@intel.com>
>> ---
>> tests/intel/xe_exec_store.c | 110 ++++++++++++++++++++++++++++++------
>> 1 file changed, 92 insertions(+), 18 deletions(-)
>>
> This didn't work on my ATS-M machine:
>
> sudo build/tests/xe_exec_store --r basic-store-benchmark
> IGT-Version: 1.28-g64414e4da (x86_64) (Linux: 6.9.0-rc6-xe-public-513ea833c201+ x86_64)
> Using IGT_SRANDOM=1718890917 for randomisation
> Opened device: /dev/dri/card0
> Starting subtest: basic-store-benchmark
> Starting dynamic subtest: WC
> Dynamic subtest WC: SUCCESS (0.000s)
> (xe_exec_store:15881) xe/xe_ioctl-CRITICAL: Test assertion failure function xe_bo_create_caching, file ../lib/xe/xe_ioctl.c:311:
> (xe_exec_store:15881) xe/xe_ioctl-CRITICAL: Failed assertion: __xe_bo_create_caching(fd, vm, size, placement, flags, cpu_caching, &handle) == 0
> (xe_exec_store:15881) xe/xe_ioctl-CRITICAL: Last errno: 22, Invalid argument
> (xe_exec_store:15881) xe/xe_ioctl-CRITICAL: error: -1 != 0
I guess WC cache is not allowed on dGFX, dmesg should let us know. I
will check and fix it. Thanks for trying it out.
>
> Also, where are benchmarks? Do you print them only after
> WC and WB runs?
It should something like:
sudo~/igt-gpu-tools/build/tests/xe_exec_store --run basic-store-benchmark
IGT-Version: 1.28-g2ed908c0b (x86_64) (Linux: 6.10.0-rc2-xe+ x86_64)
Using IGT_SRANDOM=1718739607 for randomisation
Opened device: /dev/dri/card0
Starting subtest: basic-store-benchmark
Starting dynamic subtest: WC
Dynamic subtest WC: SUCCESS (0.000s)
Time taken for size SZ_4K: 8 ms
Time taken for size SZ_2M: 7 ms
Time taken for size SZ_64M: 15 ms
Time taken for size SZ_128M: 16 ms
Time taken for size SZ_256M: 33 ms
Time taken for size SZ_1G: 110 ms
Starting dynamic subtest: WB
Dynamic subtest WB: SUCCESS (0.000s)
Time taken for size SZ_4K: 4 ms
Time taken for size SZ_2M: 5 ms
Time taken for size SZ_64M: 16 ms
Time taken for size SZ_128M: 29 ms
Time taken for size SZ_256M: 49 ms
Time taken for size SZ_1G: 176 ms
Btw I realized --dyn doesn't work, the test executes WC always even with
--dyn :/ any ideas ?
> See also one nit below.
>
>> diff --git a/tests/intel/xe_exec_store.c b/tests/intel/xe_exec_store.c
>> index c872c22d5..4b1c619e0 100644
>> --- a/tests/intel/xe_exec_store.c
>> +++ b/tests/intel/xe_exec_store.c
>> @@ -93,15 +93,10 @@ static void persistance_batch(struct data *data, uint64_t addr)
>> data->addr = batch_addr;
>>
>> }
>> -/**
>> - * SUBTEST: basic-store
>> - * Description: Basic test to verify store dword.
>> - * SUBTEST: basic-cond-batch
>> - * Description: Basic test to verify cond batch end instruction.
>> - * SUBTEST: basic-all
>> - * Description: Test to verify store dword on all available engines.
>> - */
>> -static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instance *eci)
>> +
>> +static void basic_inst_size(int fd, int inst_type,
>> + struct drm_xe_engine_class_instance *eci,
>> + uint16_t cpu_caching, size_t bo_size)
>> {
>> struct drm_xe_sync sync[2] = {
>> { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
>> @@ -117,7 +112,6 @@ static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instanc
>> uint32_t exec_queue;
>> uint32_t bind_engine;
>> uint32_t syncobj;
>> - size_t bo_size;
>> int value = 0x123456;
>> uint64_t addr = 0x100000;
>> uint32_t bo = 0;
>> @@ -127,12 +121,16 @@ static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instanc
>> sync[1].handle = syncobj;
>>
>> vm = xe_vm_create(fd, 0, 0);
>> - bo_size = sizeof(*data);
>> - bo_size = xe_bb_size(fd, bo_size);
>>
>> - bo = xe_bo_create(fd, vm, bo_size,
>> - vram_if_possible(fd, eci->gt_id),
>> - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
>> + if (cpu_caching)
>> + bo = xe_bo_create_caching(fd, vm, bo_size,
>> + vram_if_possible(fd, eci->gt_id),
>> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
>> + cpu_caching);
>> + else
>> + bo = xe_bo_create(fd, vm, bo_size,
>> + vram_if_possible(fd, eci->gt_id),
>> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
>>
>> exec_queue = xe_exec_queue_create(fd, vm, eci, 0);
>> bind_engine = xe_bind_exec_queue_create(fd, vm, 0);
>> @@ -167,6 +165,66 @@ static void basic_inst(int fd, int inst_type, struct drm_xe_engine_class_instanc
>> xe_vm_destroy(fd, vm);
>> }
>>
>> +
> Remove extra line.
Will remove it.
Thanks!
Nirmoy
>
> Regards,
> Kamil
>
>> +/**
>> + * SUBTEST: basic-store
>> + * Description: Basic test to verify store dword.
>> + * SUBTEST: basic-cond-batch
>> + * Description: Basic test to verify cond batch end instruction.
>> + * SUBTEST: basic-all
>> + * Description: Test to verify store dword on all available engines.
>> + */
>> +static void basic_inst(int fd, int inst_type,
>> + struct drm_xe_engine_class_instance *eci,
>> + uint16_t cpu_caching)
>> +{
>> + size_t bo_size;
>> +
>> + bo_size = sizeof(struct data);
>> + bo_size = xe_bb_size(fd, bo_size);
>> +
>> + basic_inst_size(fd, inst_type, eci, cpu_caching, bo_size);
>> +}
>> +
>> +/**
>> + * SUBTEST: basic-store-benchmark
>> + * Description: Basic test to verify time taken for doing store dword with various size.
>> + */
>> +static void basic_inst_benchmark(int fd, int inst_type,
>> + struct drm_xe_engine_class_instance *eci,
>> + uint16_t cpu_caching)
>> +{
>> + struct {
>> + size_t size;
>> + const char *name;
>> + } sizes[] = {
>> + {SZ_4K, "SZ_4K"},
>> + {SZ_2M, "SZ_2M"},
>> + {SZ_64M, "SZ_64M"},
>> + {SZ_128M, "SZ_128M"},
>> + {SZ_256M, "SZ_256M"},
>> + {SZ_1G, "SZ_1G"}
>> + };
>> +
>> + struct timeval start, end;
>> + long seconds, useconds, mtime;
>> +
>> + for (size_t i = 0; i < ARRAY_SIZE(sizes); ++i) {
>> + size_t bo_size = sizes[i].size;
>> + const char *size_name = sizes[i].name;
>> +
>> + gettimeofday(&start, NULL);
>> + basic_inst_size(fd, inst_type, eci, cpu_caching, bo_size);
>> + gettimeofday(&end, NULL);
>> +
>> + seconds = end.tv_sec - start.tv_sec;
>> + useconds = end.tv_usec - start.tv_usec;
>> + mtime = ((seconds) * 1000 + useconds / 1000.0) + 0.5;
>> +
>> + igt_info("Time taken for size %s: %ld ms\n", size_name, mtime);
>> + }
>> +}
>> +
>> #define PAGES 1
>> #define NCACHELINES (4096/64)
>> /**
>> @@ -342,12 +400,28 @@ igt_main
>>
>> igt_subtest("basic-store") {
>> engine = xe_engine(fd, 1);
>> - basic_inst(fd, STORE, &engine->instance);
>> + basic_inst(fd, COND_BATCH, &engine->instance, 0);
>> + }
>> +
>> + igt_subtest_with_dynamic("basic-store-benchmark") {
>> + struct dyn {
>> + const char *name;
>> + int cache;
>> + } tests[] = {
>> + {"WC", DRM_XE_GEM_CPU_CACHING_WC},
>> + {"WB", DRM_XE_GEM_CPU_CACHING_WB}
>> + };
>> +
>> + for (int i = 0; i < ARRAY_SIZE(tests); i++) {
>> + igt_dynamic_f("%s", tests[i].name);
>> + engine = xe_engine(fd, 1);
>> + basic_inst_benchmark(fd, STORE, &engine->instance, tests[i].cache);
>> + }
>> }
>>
>> igt_subtest("basic-cond-batch") {
>> engine = xe_engine(fd, 1);
>> - basic_inst(fd, COND_BATCH, &engine->instance);
>> + basic_inst(fd, COND_BATCH, &engine->instance, 0);
>> }
>>
>> igt_subtest_with_dynamic("basic-all") {
>> @@ -356,7 +430,7 @@ igt_main
>> xe_engine_class_string(hwe->engine_class),
>> hwe->engine_instance,
>> hwe->gt_id);
>> - basic_inst(fd, STORE, hwe);
>> + basic_inst(fd, STORE, hwe, 0);
>> }
>> }
>>
>> --
>> 2.42.0
>>
[-- Attachment #2: Type: text/html, Size: 11579 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-06-20 14:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-18 17:32 [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark Nirmoy Das
2024-06-18 19:10 ` ✓ CI.xeBAT: success for tests/intel/xe_exec_store: Add basic_inst_benchmark (rev2) Patchwork
2024-06-18 19:20 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-06-19 9:04 ` ✗ CI.xeFULL: " Patchwork
2024-06-20 14:20 ` [PATCH i-g-t v2] tests/intel/xe_exec_store: Add basic_inst_benchmark Kamil Konieczny
2024-06-20 14:44 ` Nirmoy Das
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox