anv: remove print lowering

This is handled by the back compiler.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33067>
This commit is contained in:
Lionel Landwerlin 2025-01-17 16:10:28 +02:00 committed by Marge Bot
parent e1074f5bd4
commit f96e95fcc9

View file

@ -87,15 +87,6 @@ compile_shader(struct anv_device *device,
link_libanv(nir, libanv);
if (INTEL_DEBUG(DEBUG_SHADER_PRINT)) {
nir_lower_printf_options printf_opts = {
.ptr_bit_size = 64,
.use_printf_base_identifier = true,
.max_buffer_size = 1024 * 1024,
};
NIR_PASS_V(nir, nir_lower_printf, &printf_opts);
}
NIR_PASS_V(nir, nir_lower_vars_to_ssa);
NIR_PASS_V(nir, nir_opt_cse);
NIR_PASS_V(nir, nir_opt_gcm, true);