* [igt-dev] [PATCH i-g-t] i915/gem_concurrent_blit: Do not try to idle while submitting in parallel
@ 2019-08-18 9:49 Chris Wilson
2019-08-18 10:52 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Chris Wilson @ 2019-08-18 9:49 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev
If we try to idle while another thread is submitting, we will be forced
to wait until that other thread is finished -- effectively serialising
the parallel workloads, defeating said purpose.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
tests/i915/gem_concurrent_all.c | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/tests/i915/gem_concurrent_all.c b/tests/i915/gem_concurrent_all.c
index 3ddaab820..266995d14 100644
--- a/tests/i915/gem_concurrent_all.c
+++ b/tests/i915/gem_concurrent_all.c
@@ -968,8 +968,6 @@ static void do_basic0(struct buffers *buffers,
do_copy do_copy_func,
do_hang do_hang_func)
{
- gem_quiescent_gpu(fd);
-
buffers->mode->set_bo(buffers, buffers->src[0], 0xdeadbeef);
for (int i = 0; i < buffers->count; i++) {
igt_hang_t hang = do_hang_func();
@@ -985,8 +983,6 @@ static void do_basic1(struct buffers *buffers,
do_copy do_copy_func,
do_hang do_hang_func)
{
- gem_quiescent_gpu(fd);
-
for (int i = 0; i < buffers->count; i++) {
igt_hang_t hang = do_hang_func();
@@ -1007,8 +1003,6 @@ static void do_basicN(struct buffers *buffers,
{
igt_hang_t hang;
- gem_quiescent_gpu(fd);
-
for (int i = 0; i < buffers->count; i++) {
buffers->mode->set_bo(buffers, buffers->src[i], i);
buffers->mode->set_bo(buffers, buffers->dst[i], ~i);
@@ -1034,7 +1028,6 @@ static void do_overwrite_source(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = 0; i < buffers->count; i++) {
buffers->mode->set_bo(buffers, buffers->src[i], i);
buffers->mode->set_bo(buffers, buffers->dst[i], ~i);
@@ -1058,7 +1051,6 @@ static void do_overwrite_source_read(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = 0; i < half; i++) {
buffers->mode->set_bo(buffers, buffers->src[i], i);
buffers->mode->set_bo(buffers, buffers->dst[i], ~i);
@@ -1102,7 +1094,6 @@ static void do_overwrite_source__rev(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = 0; i < buffers->count; i++) {
buffers->mode->set_bo(buffers, buffers->src[i], i);
buffers->mode->set_bo(buffers, buffers->dst[i], ~i);
@@ -1123,7 +1114,6 @@ static void do_overwrite_source__one(struct buffers *buffers,
{
igt_hang_t hang;
- gem_quiescent_gpu(fd);
buffers->mode->set_bo(buffers, buffers->src[0], 0);
buffers->mode->set_bo(buffers, buffers->dst[0], ~0);
do_copy_func(buffers, buffers->dst[0], buffers->src[0]);
@@ -1142,7 +1132,6 @@ static void do_intermix(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = 0; i < buffers->count; i++) {
buffers->mode->set_bo(buffers, buffers->src[i], 0xdeadbeef^~i);
buffers->mode->set_bo(buffers, buffers->dst[i], i);
@@ -1196,7 +1185,6 @@ static void do_early_read(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = buffers->count; i--; )
buffers->mode->set_bo(buffers, buffers->src[i], 0xdeadbeef);
for (i = 0; i < buffers->count; i++)
@@ -1214,7 +1202,6 @@ static void do_read_read_bcs(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = buffers->count; i--; )
buffers->mode->set_bo(buffers, buffers->src[i], 0xdeadbeef ^ i);
for (i = 0; i < buffers->count; i++) {
@@ -1235,7 +1222,6 @@ static void do_write_read_bcs(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = buffers->count; i--; )
buffers->mode->set_bo(buffers, buffers->src[i], 0xdeadbeef ^ i);
for (i = 0; i < buffers->count; i++) {
@@ -1255,7 +1241,6 @@ static void do_read_read_rcs(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = buffers->count; i--; )
buffers->mode->set_bo(buffers, buffers->src[i], 0xdeadbeef ^ i);
for (i = 0; i < buffers->count; i++) {
@@ -1276,7 +1261,6 @@ static void do_write_read_rcs(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = buffers->count; i--; )
buffers->mode->set_bo(buffers, buffers->src[i], 0xdeadbeef ^ i);
for (i = 0; i < buffers->count; i++) {
@@ -1296,7 +1280,6 @@ static void do_gpu_read_after_write(struct buffers *buffers,
igt_hang_t hang;
int i;
- gem_quiescent_gpu(fd);
for (i = buffers->count; i--; )
buffers->mode->set_bo(buffers, buffers->src[i], 0xabcdabcd);
for (i = 0; i < buffers->count; i++)
--
2.23.0.rc1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_concurrent_blit: Do not try to idle while submitting in parallel 2019-08-18 9:49 [igt-dev] [PATCH i-g-t] i915/gem_concurrent_blit: Do not try to idle while submitting in parallel Chris Wilson @ 2019-08-18 10:52 ` Patchwork 2019-08-18 14:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2019-08-20 0:50 ` [igt-dev] [PATCH i-g-t] " Summers, Stuart 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-08-18 10:52 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_concurrent_blit: Do not try to idle while submitting in parallel URL : https://patchwork.freedesktop.org/series/65373/ State : success == Summary == CI Bug Log - changes from CI_DRM_6728 -> IGTPW_3361 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65373/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3361 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live_execlists: - fi-skl-gvtdvm: [PASS][1] -> [DMESG-FAIL][2] ([fdo#111108]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html * igt@i915_selftest@live_reset: - fi-icl-u2: [PASS][3] -> [INCOMPLETE][4] ([fdo#107713]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/fi-icl-u2/igt@i915_selftest@live_reset.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/fi-icl-u2/igt@i915_selftest@live_reset.html #### Possible fixes #### * igt@gem_ctx_create@basic: - fi-icl-u3: [DMESG-WARN][5] ([fdo#107724]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/fi-icl-u3/igt@gem_ctx_create@basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/fi-icl-u3/igt@gem_ctx_create@basic.html * igt@i915_selftest@live_hangcheck: - {fi-icl-dsi}: [INCOMPLETE][7] ([fdo#107713] / [fdo#108569]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html #### Warnings #### * igt@kms_chamelium@common-hpd-after-suspend: - fi-icl-u2: [FAIL][9] ([fdo#109483]) -> [DMESG-WARN][10] ([fdo#102505] / [fdo#110390]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/fi-icl-u2/igt@kms_chamelium@common-hpd-after-suspend.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/fi-icl-u2/igt@kms_chamelium@common-hpd-after-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102505]: https://bugs.freedesktop.org/show_bug.cgi?id=102505 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483 [fdo#110390]: https://bugs.freedesktop.org/show_bug.cgi?id=110390 [fdo#111108]: https://bugs.freedesktop.org/show_bug.cgi?id=111108 Participating hosts (53 -> 44) ------------------------------ Missing (9): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus fi-cml-u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5138 -> IGTPW_3361 CI-20190529: 20190529 CI_DRM_6728: 0a7ae0f236e4979c3ee31ccb16d3b0d7948bf98b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3361: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/ IGT_5138: b9abe0bf6c478c4f6cac56bff286d6926ad8c0ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_concurrent_blit: Do not try to idle while submitting in parallel 2019-08-18 9:49 [igt-dev] [PATCH i-g-t] i915/gem_concurrent_blit: Do not try to idle while submitting in parallel Chris Wilson 2019-08-18 10:52 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-08-18 14:49 ` Patchwork 2019-08-20 0:50 ` [igt-dev] [PATCH i-g-t] " Summers, Stuart 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-08-18 14:49 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_concurrent_blit: Do not try to idle while submitting in parallel URL : https://patchwork.freedesktop.org/series/65373/ State : success == Summary == CI Bug Log - changes from CI_DRM_6728_full -> IGTPW_3361_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65373/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3361_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@rcs0-s3: - shard-apl: [PASS][1] -> [DMESG-WARN][2] ([fdo#108566]) +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-apl3/igt@gem_ctx_isolation@rcs0-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-apl6/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_exec_schedule@fifo-bsd: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#111325]) +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb7/igt@gem_exec_schedule@fifo-bsd.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb2/igt@gem_exec_schedule@fifo-bsd.html * igt@gem_exec_schedule@preempt-other-bsd1: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276]) +10 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb1/igt@gem_exec_schedule@preempt-other-bsd1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb8/igt@gem_exec_schedule@preempt-other-bsd1.html * igt@kms_flip@dpms-vs-vblank-race-interruptible: - shard-apl: [PASS][7] -> [INCOMPLETE][8] ([fdo#103927]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-apl4/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-apl6/igt@kms_flip@dpms-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-hsw: [PASS][9] -> [INCOMPLETE][10] ([fdo#103540]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-hsw4/igt@kms_flip@flip-vs-suspend-interruptible.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-hsw2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-iclb: [PASS][11] -> [FAIL][12] ([fdo#103167]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [PASS][13] -> [SKIP][14] ([fdo#109441]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_cpu.html #### Possible fixes #### * igt@gem_ctx_shared@q-smoketest-bsd1: - shard-iclb: [INCOMPLETE][15] ([fdo#107713]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb7/igt@gem_ctx_shared@q-smoketest-bsd1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb6/igt@gem_ctx_shared@q-smoketest-bsd1.html * igt@gem_exec_schedule@preempt-other-chain-bsd2: - shard-iclb: [SKIP][17] ([fdo#109276]) -> [PASS][18] +12 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb3/igt@gem_exec_schedule@preempt-other-chain-bsd2.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd2.html * igt@gem_exec_schedule@promotion-bsd: - shard-iclb: [SKIP][19] ([fdo#111325]) -> [PASS][20] +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb4/igt@gem_exec_schedule@promotion-bsd.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb5/igt@gem_exec_schedule@promotion-bsd.html * igt@gem_tiled_swapping@non-threaded: - shard-kbl: [DMESG-WARN][21] ([fdo#108686]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-kbl6/igt@gem_tiled_swapping@non-threaded.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-kbl7/igt@gem_tiled_swapping@non-threaded.html * igt@gem_workarounds@suspend-resume: - shard-apl: [DMESG-WARN][23] ([fdo#108566]) -> [PASS][24] +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-apl4/igt@gem_workarounds@suspend-resume.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-apl1/igt@gem_workarounds@suspend-resume.html * igt@i915_selftest@live_hangcheck: - shard-iclb: [INCOMPLETE][25] ([fdo#107713] / [fdo#108569]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb8/igt@i915_selftest@live_hangcheck.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb4/igt@i915_selftest@live_hangcheck.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [INCOMPLETE][27] ([fdo#103540]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-hsw1/igt@kms_flip@flip-vs-suspend.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-hsw6/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-glk: [FAIL][29] ([fdo#103167]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-iclb: [FAIL][31] ([fdo#103167]) -> [PASS][32] +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_plane_lowres@pipe-a-tiling-y: - shard-iclb: [FAIL][33] ([fdo#103166]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-y.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-y.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][35] ([fdo#109441]) -> [PASS][36] +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_vblank@pipe-a-query-forked-busy-hang: - shard-apl: [INCOMPLETE][37] ([fdo#103927]) -> [PASS][38] +5 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-apl7/igt@kms_vblank@pipe-a-query-forked-busy-hang.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-apl2/igt@kms_vblank@pipe-a-query-forked-busy-hang.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-kbl: [INCOMPLETE][39] ([fdo#103665]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-kbl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-kbl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html #### Warnings #### * igt@gem_mocs_settings@mocs-isolation-bsd2: - shard-iclb: [SKIP][41] ([fdo#109276]) -> [FAIL][42] ([fdo#111330]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb7/igt@gem_mocs_settings@mocs-isolation-bsd2.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb2/igt@gem_mocs_settings@mocs-isolation-bsd2.html * igt@gem_mocs_settings@mocs-reset-bsd2: - shard-iclb: [FAIL][43] ([fdo#111330]) -> [SKIP][44] ([fdo#109276]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb4/igt@gem_mocs_settings@mocs-reset-bsd2.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb6/igt@gem_mocs_settings@mocs-reset-bsd2.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [SKIP][45] ([fdo#109349]) -> [DMESG-WARN][46] ([fdo#107724]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6728/shard-iclb4/igt@kms_dp_dsc@basic-dsc-enable-edp.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 Participating hosts (10 -> 6) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5138 -> IGTPW_3361 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6728: 0a7ae0f236e4979c3ee31ccb16d3b0d7948bf98b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3361: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/ IGT_5138: b9abe0bf6c478c4f6cac56bff286d6926ad8c0ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3361/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] i915/gem_concurrent_blit: Do not try to idle while submitting in parallel 2019-08-18 9:49 [igt-dev] [PATCH i-g-t] i915/gem_concurrent_blit: Do not try to idle while submitting in parallel Chris Wilson 2019-08-18 10:52 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-08-18 14:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2019-08-20 0:50 ` Summers, Stuart 2 siblings, 0 replies; 4+ messages in thread From: Summers, Stuart @ 2019-08-20 0:50 UTC (permalink / raw) To: intel-gfx@lists.freedesktop.org, chris@chris-wilson.co.uk Cc: igt-dev@lists.freedesktop.org [-- Attachment #1.1: Type: text/plain, Size: 5002 bytes --] On Sun, 2019-08-18 at 10:49 +0100, Chris Wilson wrote: > If we try to idle while another thread is submitting, we will be > forced > to wait until that other thread is finished -- effectively > serialising > the parallel workloads, defeating said purpose. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Stuart Summers <stuart.summers@intel.com> > --- > tests/i915/gem_concurrent_all.c | 17 ----------------- > 1 file changed, 17 deletions(-) > > diff --git a/tests/i915/gem_concurrent_all.c > b/tests/i915/gem_concurrent_all.c > index 3ddaab820..266995d14 100644 > --- a/tests/i915/gem_concurrent_all.c > +++ b/tests/i915/gem_concurrent_all.c > @@ -968,8 +968,6 @@ static void do_basic0(struct buffers *buffers, > do_copy do_copy_func, > do_hang do_hang_func) > { > - gem_quiescent_gpu(fd); > - > buffers->mode->set_bo(buffers, buffers->src[0], 0xdeadbeef); > for (int i = 0; i < buffers->count; i++) { > igt_hang_t hang = do_hang_func(); > @@ -985,8 +983,6 @@ static void do_basic1(struct buffers *buffers, > do_copy do_copy_func, > do_hang do_hang_func) > { > - gem_quiescent_gpu(fd); > - > for (int i = 0; i < buffers->count; i++) { > igt_hang_t hang = do_hang_func(); > > @@ -1007,8 +1003,6 @@ static void do_basicN(struct buffers *buffers, > { > igt_hang_t hang; > > - gem_quiescent_gpu(fd); > - > for (int i = 0; i < buffers->count; i++) { > buffers->mode->set_bo(buffers, buffers->src[i], i); > buffers->mode->set_bo(buffers, buffers->dst[i], ~i); > @@ -1034,7 +1028,6 @@ static void do_overwrite_source(struct buffers > *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = 0; i < buffers->count; i++) { > buffers->mode->set_bo(buffers, buffers->src[i], i); > buffers->mode->set_bo(buffers, buffers->dst[i], ~i); > @@ -1058,7 +1051,6 @@ static void do_overwrite_source_read(struct > buffers *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = 0; i < half; i++) { > buffers->mode->set_bo(buffers, buffers->src[i], i); > buffers->mode->set_bo(buffers, buffers->dst[i], ~i); > @@ -1102,7 +1094,6 @@ static void do_overwrite_source__rev(struct > buffers *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = 0; i < buffers->count; i++) { > buffers->mode->set_bo(buffers, buffers->src[i], i); > buffers->mode->set_bo(buffers, buffers->dst[i], ~i); > @@ -1123,7 +1114,6 @@ static void do_overwrite_source__one(struct > buffers *buffers, > { > igt_hang_t hang; > > - gem_quiescent_gpu(fd); > buffers->mode->set_bo(buffers, buffers->src[0], 0); > buffers->mode->set_bo(buffers, buffers->dst[0], ~0); > do_copy_func(buffers, buffers->dst[0], buffers->src[0]); > @@ -1142,7 +1132,6 @@ static void do_intermix(struct buffers > *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = 0; i < buffers->count; i++) { > buffers->mode->set_bo(buffers, buffers->src[i], > 0xdeadbeef^~i); > buffers->mode->set_bo(buffers, buffers->dst[i], i); > @@ -1196,7 +1185,6 @@ static void do_early_read(struct buffers > *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = buffers->count; i--; ) > buffers->mode->set_bo(buffers, buffers->src[i], > 0xdeadbeef); > for (i = 0; i < buffers->count; i++) > @@ -1214,7 +1202,6 @@ static void do_read_read_bcs(struct buffers > *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = buffers->count; i--; ) > buffers->mode->set_bo(buffers, buffers->src[i], > 0xdeadbeef ^ i); > for (i = 0; i < buffers->count; i++) { > @@ -1235,7 +1222,6 @@ static void do_write_read_bcs(struct buffers > *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = buffers->count; i--; ) > buffers->mode->set_bo(buffers, buffers->src[i], > 0xdeadbeef ^ i); > for (i = 0; i < buffers->count; i++) { > @@ -1255,7 +1241,6 @@ static void do_read_read_rcs(struct buffers > *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = buffers->count; i--; ) > buffers->mode->set_bo(buffers, buffers->src[i], > 0xdeadbeef ^ i); > for (i = 0; i < buffers->count; i++) { > @@ -1276,7 +1261,6 @@ static void do_write_read_rcs(struct buffers > *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = buffers->count; i--; ) > buffers->mode->set_bo(buffers, buffers->src[i], > 0xdeadbeef ^ i); > for (i = 0; i < buffers->count; i++) { > @@ -1296,7 +1280,6 @@ static void do_gpu_read_after_write(struct > buffers *buffers, > igt_hang_t hang; > int i; > > - gem_quiescent_gpu(fd); > for (i = buffers->count; i--; ) > buffers->mode->set_bo(buffers, buffers->src[i], > 0xabcdabcd); > for (i = 0; i < buffers->count; i++) [-- Attachment #1.2: smime.p7s --] [-- Type: application/x-pkcs7-signature, Size: 3270 bytes --] [-- Attachment #2: Type: text/plain, Size: 153 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-08-20 0:50 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-08-18 9:49 [igt-dev] [PATCH i-g-t] i915/gem_concurrent_blit: Do not try to idle while submitting in parallel Chris Wilson 2019-08-18 10:52 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-08-18 14:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2019-08-20 0:50 ` [igt-dev] [PATCH i-g-t] " Summers, Stuart
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox