From 7967be922da2b93578524484030d6d388af7ebf8 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 5 Apr 2024 11:15:13 -0400 Subject: [PATCH] agx: set compact_arrays in compiler options Part-of: --- src/asahi/compiler/agx_compile.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/asahi/compiler/agx_compile.h b/src/asahi/compiler/agx_compile.h index 6070b416d88..de950c1beb6 100644 --- a/src/asahi/compiler/agx_compile.h +++ b/src/asahi/compiler/agx_compile.h @@ -279,4 +279,5 @@ static const nir_shader_compiler_options agx_nir_options = { (nir_lower_int64_options) ~(nir_lower_iadd64 | nir_lower_imul_2x32_64), .lower_doubles_options = (nir_lower_doubles_options)(~0), .lower_fquantize2f16 = true, + .compact_arrays = true, };