pan/bit: Add IMATH packing tests
authorAlyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Mon, 4 May 2020 18:40:26 +0000 (14:40 -0400)
committerMarge Bot <eric+marge@anholt.net>
Mon, 4 May 2020 18:45:15 +0000 (18:45 +0000)
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4890>

src/panfrost/bifrost/test/bi_test_pack.c

index 832eddaa1637627edfa225deb0938048afa7ed29..352a7794b511fc26561eeb7f3d598ea046988945 100644 (file)
@@ -545,6 +545,18 @@ bit_bitwise_helper(struct panfrost_device *dev, uint32_t *input, unsigned size,
         }
 }
 
+static void
+bit_imath_helper(struct panfrost_device *dev, uint32_t *input, unsigned size, enum bit_debug debug, bool FMA)
+{
+        bi_instruction ins = bit_ins(BI_IMATH, 2, nir_type_uint, size);
+        bit_swizzle_identity(&ins, 2, size);
+
+        for (unsigned op = BI_IMATH_ADD; op <= BI_IMATH_SUB; ++op) {
+                ins.op.imath = op;
+                bit_test_single(dev, &ins, input, FMA, debug);
+        }
+}
+
 void
 bit_packing(struct panfrost_device *dev, enum bit_debug debug)
 {
@@ -616,6 +628,10 @@ bit_packing(struct panfrost_device *dev, enum bit_debug debug)
         bit_fcmp_helper(dev, (uint32_t *) input32, 32, debug, true);
         bit_fcmp_helper(dev, (uint32_t *) input32, 16, debug, true);
 
-        for (unsigned sz = 8; sz <= 32; sz *= 2)
+        for (unsigned sz = 8; sz <= 32; sz *= 2) {
                 bit_bitwise_helper(dev, (uint32_t *) input32, sz, debug);
+                bit_imath_helper(dev, (uint32_t *) input32, sz, debug, false);
+        }
+
+        bit_imath_helper(dev, (uint32_t *) input32, 32, debug, true);
 }