diff --git a/src/asahi/compiler/agx_performance.c b/src/asahi/compiler/agx_performance.c index 20cc0f3aab3..2851fe44c34 100644 --- a/src/asahi/compiler/agx_performance.c +++ b/src/asahi/compiler/agx_performance.c @@ -126,6 +126,11 @@ agx_estimate_cycles(agx_context *ctx) if (alu.unit == IC) { est.ic += alu.tp * 2; + + /* In addition to the IC work, IC ops appear to be dispatched along + * with SCIB. + */ + est.f_scib += 1; } else if (alu.unit) { est.f_scib += alu.tp; } else {