i965/fs: Match destination type to size for ballot

No use in taking a 64-bit value when we know the high 32-bits are zero.
This commit is contained in:
Matt Turner
2017-06-30 15:11:15 -07:00
parent 1038d385a9
commit 069bf7c907
2 changed files with 6 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ static const struct nir_shader_compiler_options scalar_nir_options = {
.lower_unpack_unorm_2x16 = true,
.lower_unpack_unorm_4x8 = true,
.lower_subgroup_masks = true,
.max_subgroup_size = 64, /* FIXME */
.max_subgroup_size = 32,
.max_unroll_iterations = 32,
};