Mesa (master): aco: fix GFX9 opcode for v_xad_u32

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Sep 25 15:30:28 UTC 2019


Module: Mesa
Branch: master
Commit: 00aa413baeac4ae2c4752ae1d5347983caabcd57
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=00aa413baeac4ae2c4752ae1d5347983caabcd57

Author: Rhys Perry <pendingchaos02 at gmail.com>
Date:   Tue Sep 24 14:34:28 2019 +0100

aco: fix GFX9 opcode for v_xad_u32

Fixes various dEQP-VK.image.store.* tests.

Signed-off-by: Rhys Perry <pendingchaos02 at gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>

---

 src/amd/compiler/aco_opcodes.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/amd/compiler/aco_opcodes.py b/src/amd/compiler/aco_opcodes.py
index 2221e2817af..c9c31c3c6ef 100644
--- a/src/amd/compiler/aco_opcodes.py
+++ b/src/amd/compiler/aco_opcodes.py
@@ -954,7 +954,7 @@ VOP3 = {
    (0x12c, 0x12c, 0x1f0, 0x1f0,    -1, "v_cvt_pkaccum_u8_f32", True, False),
    (   -1,    -1,    -1, 0x1f1, 0x373, "v_mad_u32_u16", False, False),
    (   -1,    -1,    -1, 0x1f2, 0x375, "v_mad_i32_i16", False, False),
-   (   -1,    -1,    -1, 0x1f2, 0x345, "v_xad_u32", False, False),
+   (   -1,    -1,    -1, 0x1f3, 0x345, "v_xad_u32", False, False),
    (   -1,    -1,    -1, 0x1f4, 0x351, "v_min3_f16", True, True),
    (   -1,    -1,    -1, 0x1f5, 0x352, "v_min3_i16", False, False),
    (   -1,    -1,    -1, 0x1f6, 0x353, "v_min3_u16", False, False),




More information about the mesa-commit mailing list