radv: remove family from cache key
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/work_items/4182
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41340>
This commit is contained in:
Rhys Perry 2026-04-24 10:51:40 +01:00 committed by Marge Bot
parent 268dba8c48
commit 02c1f657a0
2 changed files with 3 additions and 2 deletions

View file

@ -1189,7 +1189,8 @@ radv_device_init_compiler_info(struct radv_device *device)
.lower_terminate_to_discard = instance->drirc.debug.lower_terminate_to_discard,
.no_implicit_varying_subgroup_size = instance->drirc.debug.no_implicit_varying_subgroup_size,
.force_aniso = device->force_aniso,
.family = pdev->info.family,
/* Use CHIP_UNKNOWN for increased compatiblity between caches. */
.family = pdev->use_llvm ? pdev->info.family : CHIP_UNKNOWN,
/* Wave/subgroup sizes */
.ge_wave_size = pdev->ge_wave_size,

View file

@ -548,7 +548,7 @@ struct radv_compiler_info {
int32_t force_aniso;
uint32_t family;
uint32_t family; /* CHIP_UNKNOWN unless LLVM is used. */
/* Wave/subgroup sizes */
uint8_t ge_wave_size;