aco: implement 8-bit/16-bit nir_intrinsic_read_first_invocation
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Rhys Perry <pendingchaos02@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4494>
This commit is contained in:
committed by
Marge Bot
parent
af7e2c6133
commit
f03e56eaf0
@@ -7584,7 +7584,7 @@ void visit_intrinsic(isel_context *ctx, nir_intrinsic_instr *instr)
|
||||
case nir_intrinsic_read_first_invocation: {
|
||||
Temp src = get_ssa_temp(ctx, instr->src[0].ssa);
|
||||
Temp dst = get_ssa_temp(ctx, &instr->dest.ssa);
|
||||
if (src.regClass() == v1) {
|
||||
if (src.regClass() == v1b || src.regClass() == v2b || src.regClass() == v1) {
|
||||
emit_wqm(ctx,
|
||||
bld.vop1(aco_opcode::v_readfirstlane_b32, bld.def(s1), src),
|
||||
dst);
|
||||
|
||||
Reference in New Issue
Block a user