Update launcher/src/main.rs

Co-authored-by: Daniël de Kok <me@danieldk.eu>
This commit is contained in:
Nicolas Patry 2024-12-09 10:41:34 +01:00 committed by GitHub
parent 5b04d6c49d
commit 36ed43c920
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"),