From 36ed43c92078bcf89bd2755c57b9cfee1c6c6100 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 9 Dec 2024 10:41:34 +0100 Subject: [PATCH] Update launcher/src/main.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Daniƫl de Kok --- launcher/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/main.rs b/launcher/src/main.rs index 3c18959c..9de2e4e5 100644 --- a/launcher/src/main.rs +++ b/launcher/src/main.rs @@ -76,7 +76,7 @@ fn vram_maximum( if let Some(vram) = available.checked_sub(model) { let tokens_allowed = vram / token_vram; tracing::debug!( - "Available vram {}: model needs{}, every tokens requires {}, maximum allocatable tokens {tokens_allowed}", + "Available vram {}: model needs {}, every tokens requires {}, maximum allocatable tokens {tokens_allowed}", human_size(available, "B"), human_size(model, "B"), human_size(token_vram, "B"),