From 6f237a23c771e3dc74adc1cc0ab5cbc3e3b03be8 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 17 Jan 2024 10:25:29 -0800 Subject: [PATCH] intel/compiler: Track lower_dpas flag in brw_get_compiler_config_value This user-settable flag affects compiler output, so it should be tracked in the cache hash. Fixes: 3756f605586 ("intel/fs: DPAS lowering") Reviewed-by: Lionel Landwerlin Suggested-by: Lionel Landwerlin Part-of: --- src/intel/compiler/brw_compiler.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/intel/compiler/brw_compiler.c b/src/intel/compiler/brw_compiler.c index 06bb63e284c..560076e5805 100644 --- a/src/intel/compiler/brw_compiler.c +++ b/src/intel/compiler/brw_compiler.c @@ -249,6 +249,8 @@ brw_get_compiler_config_value(const struct brw_compiler *compiler) insert_u64_bit(&config, compiler->precise_trig); bits++; + insert_u64_bit(&config, compiler->lower_dpas); + bits++; uint64_t mask = DEBUG_DISK_CACHE_MASK; bits += util_bitcount64(mask);