Module: Mesa Branch: staging/20.2 Commit: 81df3a4a4c2e77f153d9d6df2c86e70cf2714a90 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=81df3a4a4c2e77f153d9d6df2c86e70cf2714a90
Author: Marek Olšák <[email protected]> Date: Thu Jul 30 07:47:42 2020 -0400 radeonsi: use correct wave size in gfx10_ngg_calculate_subgroup_info Fixes: 88efb63cafc ("radeonsi/gfx10: implement Wave32") Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6137> (cherry picked from commit b6fb09fd843293a4e5269cc457b6685435822d31) --- .pick_status.json | 2 +- src/gallium/drivers/radeonsi/gfx10_shader_ngg.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pick_status.json b/.pick_status.json index 398f752d94a..d21f7af9715 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -76,7 +76,7 @@ "description": "radeonsi: use correct wave size in gfx10_ngg_calculate_subgroup_info", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "88efb63cafcf249a370ee27683c41afde3b95ffd" }, diff --git a/src/gallium/drivers/radeonsi/gfx10_shader_ngg.c b/src/gallium/drivers/radeonsi/gfx10_shader_ngg.c index 36e84ec12e0..c7b55568502 100644 --- a/src/gallium/drivers/radeonsi/gfx10_shader_ngg.c +++ b/src/gallium/drivers/radeonsi/gfx10_shader_ngg.c @@ -2008,7 +2008,7 @@ retry_select_mode: /* Round up towards full wave sizes for better ALU utilization. */ if (!max_vert_out_per_gs_instance) { - const unsigned wavesize = gs_sel->screen->ge_wave_size; + const unsigned wavesize = si_get_shader_wave_size(shader); unsigned orig_max_esverts; unsigned orig_max_gsprims; do { _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
