mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-09-12 04:44:52 +00:00
Removing the logs.
This commit is contained in:
parent
4fff77ebcb
commit
4a38185d78
@ -89,8 +89,6 @@ impl Allocator for RadixAllocator {
|
||||
let prefix_len = blocks.len();
|
||||
let suffix_len = tokens - prefix_len as u32;
|
||||
|
||||
tracing::info!("Prefix {prefix_len} - Suffix {suffix_len}");
|
||||
|
||||
match self.alloc_or_reclaim(suffix_len as usize) {
|
||||
Some(suffix_blocks) => blocks.extend(suffix_blocks),
|
||||
None => {
|
||||
|
@ -1743,7 +1743,7 @@ class FlashCausalLM(Model):
|
||||
left = 0
|
||||
|
||||
if n_accepted_ids > 1:
|
||||
log_master(logger.info, f"Speculated ids {n_accepted_ids - 1}")
|
||||
log_master(logger.debug, f"Speculated ids {n_accepted_ids - 1}")
|
||||
|
||||
current_stopped = False
|
||||
for j in range(index, index + n_accepted_ids):
|
||||
|
Loading…
Reference in New Issue
Block a user