Merge pull request #475 from JeLuF/beta

🔥Fix system info for CPU mode
This commit is contained in:
cmdr2 2022-11-14 22:41:38 +05:30 committed by GitHub
commit 0ebfbca93e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -196,7 +196,11 @@ function setSystemInfo(devices) {
function ID_TO_TEXT(d) {
let info = devices.all[d]
return `${info.name} <small>(${d}) (${info.mem_free.toFixed(1)}Gb free / ${info.mem_total.toFixed(1)} Gb total)</small>`
if ("mem_free" in info && "mem_total" in info) {
return `${info.name} <small>(${d}) (${info.mem_free.toFixed(1)}Gb free / ${info.mem_total.toFixed(1)} Gb total)</small>`
} else {
return `${info.name} <small>(${d}) (no memory info)</small>`
}
}
allGPUs = allGPUs.map(ID_TO_TEXT)