brw: Consider bfloat16 in scoreboard

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Rohan Garg <rohan.garg@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33664>
This commit is contained in:
Caio Oliveira 2025-03-15 15:31:59 -07:00 committed by Marge Bot
parent 62323a934b
commit e37b707bd0

View file

@ -156,7 +156,7 @@ namespace {
assert(devinfo->has_64bit_float || devinfo->has_64bit_int ||
devinfo->has_integer_dword_mul);
return TGL_PIPE_LONG;
} else if (brw_type_is_float(inst->dst.type))
} else if (brw_type_is_float_or_bfloat(inst->dst.type))
return TGL_PIPE_FLOAT;
else
return TGL_PIPE_INT;