inference: Fix typo in log
Co-authored-by: Dorin-Andrei Geman <dorin.geman@docker.com>
This commit is contained in:
parent
b6d86e5606
commit
2e872f9dd2
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue