microsoft: Stop claiming dot_4x8_sat support

Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26533>
This commit is contained in:
Faith Ekstrand 2023-12-06 09:22:02 -06:00 committed by Marge Bot
parent d2ffcb6092
commit adafcacf15
2 changed files with 0 additions and 6 deletions

View file

@ -96,10 +96,6 @@ remove_unsupported_casts(no_16bit_conv, 16, 0xffff, 65535.0, -32768.0, 32767.0)
algebraic_ops = [
(('b2b32', 'a'), ('b2i32', 'a')),
(('b2b1', 'a'), ('ine', ('b2i32', a), 0)),
# We don't support the saturating versions of these
(('sdot_4x8_iadd_sat', a, b, c), ('iadd_sat', ('sdot_4x8_iadd', a, b, 0), c)),
(('udot_4x8_uadd_sat', a, b, c), ('uadd_sat', ('udot_4x8_uadd', a, b, 0), c)),
]
no_16bit_conv += [

View file

@ -184,8 +184,6 @@ dxil_get_nir_compiler_options(nir_shader_compiler_options *options,
if (shader_model_max >= SHADER_MODEL_6_4) {
options->has_sdot_4x8 = true;
options->has_udot_4x8 = true;
options->has_sdot_4x8_sat = true;
options->has_udot_4x8_sat = true;
}
}