You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
m.log.Warnf("Failed to calculate memory required for model %q: %s", request.From, err)
169
169
// Prefer staying functional in case of unexpected estimation errors.
170
170
proceed=true
171
171
}
172
172
if!proceed {
173
-
m.log.Warnf("Runtime memory requirement for model %q exceeds total system memory", request.From)
174
-
http.Error(w, "Runtime memory requirement for model exceeds total system memory", http.StatusInsufficientStorage)
173
+
errstr:=fmt.Sprintf("Runtime memory requirement for model %q exceeds total system memory: required %d RAM %d VRAM, system %d RAM %d VRAM", request.From, req.RAM, req.VRAM, totalMem.RAM, totalMem.VRAM)
0 commit comments