inference: Fix typo in log

Co-authored-by: Dorin-Andrei Geman <dorin.geman@docker.com>
This commit is contained in:
Piotr 2025-07-22 14:07:08 +02:00 committed by GitHub
parent b6d86e5606
commit 2e872f9dd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ func newLoader(
vramSize = 1
log.Warnf("Could not read VRAM size: %s", err)
} else {
log.Infof("Running on system with %dMB VRAM", vramSize/1022/1024)
log.Infof("Running on system with %dMB VRAM", vramSize/1024/1024)
}
ramSize := uint64(1)
hostInfo, err := sysinfo.Host()