From 2881edb3d7467669c5015165fdbc1d9517fb38e8 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Tue, 10 Sep 2024 10:59:58 +0200 Subject: [PATCH] Remove 1 log and put back the other. --- backends/v3/src/queue.rs | 2 +- backends/v3/src/radix.rs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/backends/v3/src/queue.rs b/backends/v3/src/queue.rs index c36afefa..978a495c 100644 --- a/backends/v3/src/queue.rs +++ b/backends/v3/src/queue.rs @@ -366,7 +366,7 @@ impl State { break; } Some(block_allocation) => { - // tracing::debug!("Allocation: {block_allocation:?}"); + tracing::debug!("Allocation: {block_allocation:?}"); max_blocks = max(max_blocks, block_allocation.blocks.len() as u32); Some(block_allocation) } diff --git a/backends/v3/src/radix.rs b/backends/v3/src/radix.rs index db6028ac..9b117456 100644 --- a/backends/v3/src/radix.rs +++ b/backends/v3/src/radix.rs @@ -123,8 +123,6 @@ impl Allocator for RadixAllocator { prefill_tokens: prefill_tokens.clone(), }; - // tracing::debug!("Blocks {blocks:?}"); - self.allocation_id += 1; self.allocations.insert(self.allocation_id, allocation);