Module: Mesa Branch: master Commit: 2faaf04c6240f44afe99ba9e51e79b0b41d390b1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2faaf04c6240f44afe99ba9e51e79b0b41d390b1
Author: Rhys Perry <[email protected]> Date: Tue Sep 24 15:45:48 2019 +0100 aco: fix v_subrev_co_u32_e64 opcode Signed-off-by: Rhys Perry <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> --- 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 c9c31c3c6ef..c680974bfec 100644 --- a/src/amd/compiler/aco_opcodes.py +++ b/src/amd/compiler/aco_opcodes.py @@ -1006,7 +1006,7 @@ VOP3 = { ( -1, -1, -1, -1, 0x378, "v_permlanex16_b32", False, False), ( -1, -1, -1, -1, 0x30f, "v_add_co_u32_e64", False, False), ( -1, -1, -1, -1, 0x310, "v_sub_co_u32_e64", False, False), - ( -1, -1, -1, -1, 0x311, "v_subrev_co_u32_e64", False, False), + ( -1, -1, -1, -1, 0x319, "v_subrev_co_u32_e64", False, False), # TODO: many 16bit instructions moved from VOP2 to VOP3 on GFX10 } for (gfx6, gfx7, gfx8, gfx9, gfx10, name, in_mod, out_mod) in VOP3: _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
