mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
radv: remove family from cache key
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:
parent
268dba8c48
commit
02c1f657a0
2 changed files with 3 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue