Mesa (main): aco/tests: disable regalloc.subdword_alloc.reuse_16bit_operands on GFX11

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue May 31 18:32:15 UTC 2022


Module: Mesa
Branch: main
Commit: c8bde76a42f5791d3b6926a2044c964f65e7aafb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c8bde76a42f5791d3b6926a2044c964f65e7aafb

Author: Rhys Perry <pendingchaos02 at gmail.com>
Date:   Fri May 13 15:27:12 2022 +0100

aco/tests: disable regalloc.subdword_alloc.reuse_16bit_operands on GFX11

Signed-off-by: Rhys Perry <pendingchaos02 at gmail.com>
Reviewed-by: Timur Kristóf <timur.kristof at gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16595>

---

 src/amd/compiler/tests/test_regalloc.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/amd/compiler/tests/test_regalloc.cpp b/src/amd/compiler/tests/test_regalloc.cpp
index d7c99aa2983..d8fef98a5bf 100644
--- a/src/amd/compiler/tests/test_regalloc.cpp
+++ b/src/amd/compiler/tests/test_regalloc.cpp
@@ -35,7 +35,8 @@ BEGIN_TEST(regalloc.subdword_alloc.reuse_16bit_operands)
     * result in v0.
     */
 
-   for (amd_gfx_level cc = GFX8; cc < NUM_GFX_VERSIONS; cc = (amd_gfx_level)((unsigned)cc + 1)) {
+   /* TODO: is this possible to do on GFX11? */
+   for (amd_gfx_level cc = GFX8; cc <= GFX10_3; cc = (amd_gfx_level)((unsigned)cc + 1)) {
       for (bool pessimistic : { false, true }) {
          const char* subvariant = pessimistic ? "/pessimistic" : "/optimistic";
 



More information about the mesa-commit mailing list