pan/bi: Drop *FMIN reference

Even on G72, it's unsupported.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6749>
This commit is contained in:
Alyssa Rosenzweig 2020-09-10 13:26:57 -04:00 committed by Marge Bot
parent 865e252dd0
commit a51aa6feb4
2 changed files with 1 additions and 3 deletions

View File

@ -562,8 +562,6 @@ bi_pack_fma(bi_clause *clause, bi_bundle bundle, bi_registers *regs)
return pan_pack_fma_iaddc_i32(clause, bundle.fma, regs);
else
return pan_pack_fma_isubb_i32(clause, bundle.fma, regs);
case BI_MINMAX:
unreachable("FMIN/FMAX not supported on FMA since G72");
case BI_MOV:
return pan_pack_fma_mov_i32(clause, bundle.fma, regs);
case BI_SELECT:

View File

@ -45,7 +45,7 @@ unsigned bi_class_props[BI_NUM_CLASSES] = {
[BI_LOAD_ATTR] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR | BI_DATA_REG_DEST,
[BI_LOAD_VAR] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR | BI_DATA_REG_DEST,
[BI_LOAD_VAR_ADDRESS] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR | BI_DATA_REG_DEST,
[BI_MINMAX] = BI_SCHED_ADD | BI_NO_ABS_ABS_FP16_FMA | BI_MODS, /* | FMA on some? */
[BI_MINMAX] = BI_SCHED_ADD | BI_NO_ABS_ABS_FP16_FMA | BI_MODS,
[BI_MOV] = BI_SCHED_ALL,
[BI_FMOV] = BI_MODS | BI_SCHED_ALL,
[BI_REDUCE_FMA] = BI_SCHED_FMA,