anv/generated_indirect_draws: Adjust xe2 simd32 sends_count_expectation
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: e9f63df ('intel/dev: Enable LNL PCI IDs without INTEL_FORCE_PROBE')
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30093>
This commit is contained in:
parent
2c6e8b2dd5
commit
bb8063e1f4
1 changed files with 3 additions and 1 deletions
|
|
@ -197,7 +197,9 @@ compile_shader(struct anv_device *device,
|
|||
if (prog_data.wm.dispatch_32) {
|
||||
assert(stats[stat_idx].spills == 0);
|
||||
assert(stats[stat_idx].fills == 0);
|
||||
assert(stats[stat_idx].sends == sends_count_expectation * 2);
|
||||
assert(stats[stat_idx].sends ==
|
||||
sends_count_expectation *
|
||||
(device->info->ver < 20 ? 2 : 1));
|
||||
stat_idx++;
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue