Revert "intel: Simplify the half-float packing in image load/store lowering."
authorEric Anholt <eric@anholt.net>
Thu, 13 Dec 2018 19:25:08 +0000 (11:25 -0800)
committerEric Anholt <eric@anholt.net>
Thu, 13 Dec 2018 20:24:24 +0000 (12:24 -0800)
This reverts commit 06fbcd2cd5cc5702c9039c26d20082a99bc157bf.
nir_pack_half_2x16_split *isn't* vectorizable, it's 1-component only, thus
why we had this split-scalar code in the first place.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/intel/compiler/brw_nir_lower_image_load_store.c

index d1547c98c54ba0f61056adb6bc6169cade7dd650..269dbf8e2835badd4ac6ab760965afca13b582f1 100644 (file)
@@ -544,8 +544,14 @@ convert_color_for_store(nir_builder *b, const struct gen_device_info *devinfo,
       break;
 
    case ISL_SFLOAT:
-      if (image.bits[0] == 16)
-         color = nir_pack_half_2x16_split(b, color, nir_imm_float(b, 0));
+      if (image.bits[0] == 16) {
+         nir_ssa_def *f16comps[4];
+         for (unsigned i = 0; i < image.chans; i++) {
+            f16comps[i] = nir_pack_half_2x16_split(b, nir_channel(b, color, i),
+                                                      nir_imm_float(b, 0));
+         }
+         color = nir_vec(b, f16comps, image.chans);
+      }
       break;
 
    case ISL_UINT: