diff --git a/src/asahi/compiler/agx_compile.h b/src/asahi/compiler/agx_compile.h index 7c92254de2d..659aee9490b 100644 --- a/src/asahi/compiler/agx_compile.h +++ b/src/asahi/compiler/agx_compile.h @@ -406,7 +406,4 @@ static const nir_shader_compiler_options agx_nir_options = { .discard_is_demote = true, .scalarize_ddx = true, .io_options = nir_io_always_interpolate_convergent_fs_inputs, - .subgroup_size = 32, - .ballot_bit_size = 32, - .ballot_components = 1, }; diff --git a/src/compiler/nir/nir_shader_compiler_options.h b/src/compiler/nir/nir_shader_compiler_options.h index 423a1f3b517..9b06d1ef02a 100644 --- a/src/compiler/nir/nir_shader_compiler_options.h +++ b/src/compiler/nir/nir_shader_compiler_options.h @@ -787,14 +787,6 @@ typedef struct nir_shader_compiler_options { */ unsigned skip_lower_packing_ops; - /* In case the exact subgroup size is not known, subgroup_size should be - * set to 0. In that case, the maximum subgroup size will be calculated by - * ballot_components * ballot_bit_size. - */ - uint8_t subgroup_size; - uint8_t ballot_bit_size; - uint8_t ballot_components; - /** Driver callback where drivers can define how to lower mediump. * Used by nir_lower_io_passes. */