intel/fs/gfx12+: Drop redundant handling of SHADER_OPCODE_BROADCAST in exec pipe inference.
Commit c80c0ed943
introduced handling of
SHADER_OPCODE_BROADCAST into inferred_exec_pipe(), but it was already
being handled, drop the redundant handling. Shouldn't lead to any
functional changes.
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20543>
This commit is contained in:

committed by
Marge Bot

parent
b867d1b851
commit
f40e17059a
@@ -133,9 +133,6 @@ namespace {
|
||||
(inst->opcode == SHADER_OPCODE_SEL_EXEC &&
|
||||
type_sz(inst->dst.type) > 4))
|
||||
return TGL_PIPE_INT;
|
||||
else if (inst->opcode == SHADER_OPCODE_BROADCAST &&
|
||||
!devinfo->has_64bit_float && type_sz(t) >= 8)
|
||||
return TGL_PIPE_INT;
|
||||
else if (inst->opcode == FS_OPCODE_PACK_HALF_2x16_SPLIT)
|
||||
return TGL_PIPE_FLOAT;
|
||||
else if (type_sz(inst->dst.type) >= 8 || type_sz(t) >= 8 ||
|
||||
|
Reference in New Issue
Block a user