aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRhys Perry <[email protected]>2019-11-26 21:06:35 +0000
committerRhys Perry <[email protected]>2019-11-29 17:46:01 +0000
commitf1381e6715336fc9cf769eb591bf742659dfa9ec (patch)
tree10b7313a4f144a4495b33685c15094648de031e7
parent5986e0019472498e060a56c3d967ce0934914ce3 (diff)
aco: fix GFX10 opcodes for some global/flat atomics
Signed-off-by: Rhys Perry <[email protected]> Reviewed-by: Daniel Schürmann <[email protected]>
-rw-r--r--src/amd/compiler/aco_opcodes.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/amd/compiler/aco_opcodes.py b/src/amd/compiler/aco_opcodes.py
index 08337a18d22..5f74998a421 100644
--- a/src/amd/compiler/aco_opcodes.py
+++ b/src/amd/compiler/aco_opcodes.py
@@ -1451,9 +1451,9 @@ FLAT = {
(0x51, 0x61, 0x51, "flat_atomic_cmpswap_x2"),
(0x52, 0x62, 0x52, "flat_atomic_add_x2"),
(0x53, 0x63, 0x53, "flat_atomic_sub_x2"),
- (0x55, 0x64, 0x54, "flat_atomic_smin_x2"),
- (0x56, 0x65, 0x55, "flat_atomic_umin_x2"),
- (0x57, 0x66, 0x56, "flat_atomic_smax_x2"),
+ (0x55, 0x64, 0x55, "flat_atomic_smin_x2"),
+ (0x56, 0x65, 0x56, "flat_atomic_umin_x2"),
+ (0x57, 0x66, 0x57, "flat_atomic_smax_x2"),
(0x58, 0x67, 0x58, "flat_atomic_umax_x2"),
(0x59, 0x68, 0x59, "flat_atomic_and_x2"),
(0x5a, 0x69, 0x5a, "flat_atomic_or_x2"),
@@ -1511,9 +1511,9 @@ GLOBAL = {
(0x61, 0x51, "global_atomic_cmpswap_x2"),
(0x62, 0x52, "global_atomic_add_x2"),
(0x63, 0x53, "global_atomic_sub_x2"),
- (0x64, 0x54, "global_atomic_smin_x2"),
- (0x65, 0x55, "global_atomic_umin_x2"),
- (0x66, 0x56, "global_atomic_smax_x2"),
+ (0x64, 0x55, "global_atomic_smin_x2"),
+ (0x65, 0x56, "global_atomic_umin_x2"),
+ (0x66, 0x57, "global_atomic_smax_x2"),
(0x67, 0x58, "global_atomic_umax_x2"),
(0x68, 0x59, "global_atomic_and_x2"),
(0x69, 0x5a, "global_atomic_or_x2"),