From bb4ff3e6e2307566b680ea28fbc2fac2805230aa Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Tue, 28 Sep 2021 13:04:27 +0300 Subject: [PATCH] intel/kernel: enable groups caps This is roughly the same as SpvCapabilityGroupNonUniform (subgroup_basic). Signed-off-by: Lionel Landwerlin Reviewed-by: Jason Ekstrand Part-of: --- src/intel/compiler/brw_kernel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/compiler/brw_kernel.c b/src/intel/compiler/brw_kernel.c index a897ebef74a..b64ca92fde2 100644 --- a/src/intel/compiler/brw_kernel.c +++ b/src/intel/compiler/brw_kernel.c @@ -268,6 +268,7 @@ brw_kernel_from_spirv(struct brw_compiler *compiler, .address = true, .float16 = devinfo->ver >= 8, .float64 = devinfo->ver >= 8, + .groups = true, .image_write_without_format = true, .int8 = devinfo->ver >= 8, .int16 = devinfo->ver >= 8,