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:
Jordan Justen 2023-03-08 23:05:16 -08:00 committed by Marge Bot
parent 2c6e8b2dd5
commit bb8063e1f4

View file

@ -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 {