Tiny log prefill time (#6780)

This commit is contained in:
fzyzcjy
2025-06-03 01:28:27 +08:00
committed by GitHub
parent e05e29d178
commit 6376b632eb

View File

@@ -1158,7 +1158,8 @@ class Scheduler(
if self.disaggregation_mode == DisaggregationMode.PREFILL:
f += f"#unbootstrapped-req: {len(self.disagg_prefill_bootstrap_queue.queue)}, "
f += f"#queue-req: {len(self.waiting_queue)}, "
f += f"#transferring-req: {len(self.disagg_prefill_inflight_queue)} "
f += f"#transferring-req: {len(self.disagg_prefill_inflight_queue)}, "
f += f"time: {gap_latency:.2f} "
else:
f += f"#queue-req: {len(self.waiting_queue)}"