mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 06:40:11 +01:00
intel: Disable has_bfloat16 for MTL
Not supported. Some operations *do* work, but proper support
was removed since it also doesn't support DPAS.
Fixes: 9916cc1050 ("brw: Add BRW_TYPE_BF for bfloat16")
Reviewed-by: Rohan Garg <rohan.garg@intel.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34506>
This commit is contained in:
parent
adfab666a4
commit
050acb9def
1 changed files with 2 additions and 0 deletions
|
|
@ -1105,6 +1105,7 @@ static const struct intel_device_info intel_device_info_atsm_g11 = {
|
|||
.platform = INTEL_PLATFORM_ ## platform_suffix, \
|
||||
.has_64bit_float = true, \
|
||||
.has_64bit_float_via_math_pipe = true, \
|
||||
.has_bfloat16 = false, \
|
||||
/* BSpec 55414 (r53716). */ \
|
||||
.has_systolic = false, \
|
||||
/* BSpec 45101 (r51017) */ \
|
||||
|
|
@ -1133,6 +1134,7 @@ static const struct intel_device_info intel_device_info_arl_u = {
|
|||
|
||||
static const struct intel_device_info intel_device_info_arl_h = {
|
||||
MTL_CONFIG(ARL_H),
|
||||
.has_bfloat16 = true,
|
||||
/* BSpec 55414 (r53716). */
|
||||
.has_systolic = true,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue