diff --git a/src/panfrost/midgard/midgard_emit.c b/src/panfrost/midgard/midgard_emit.c index ce85dfc5fd7..1996e1b1ef6 100644 --- a/src/panfrost/midgard/midgard_emit.c +++ b/src/panfrost/midgard/midgard_emit.c @@ -260,6 +260,13 @@ emit_binary_bundle(compiler_context *ctx, if (mir_op_computes_derivatives(ins->texture.op)) { bool continues = ctx->texture_op_count > 0; + + /* Control flow complicates helper invocation + * lifespans, so for now just keep helper threads + * around indefinitely with loops. TODO: Proper + * analysis */ + continues |= ctx->loop_count > 0; + ins->texture.cont = continues; ins->texture.last = !continues; } else {