()
| 595 | } |
| 596 | |
| 597 | function getGpuMemBudgetMb(): number { |
| 598 | const vram = probeNvidiaVramMb(); |
| 599 | if (vram) return Math.min(vram, 16384); |
| 600 | |
| 601 | const total = getSystemTotalMb(); |
| 602 | if (total < 4096) return 512; |
| 603 | if (total <= LOW_MEMORY_TOTAL_MB_THRESHOLD) return 1024; |
| 604 | return Math.min(Math.floor(total / 2), 16384); |
| 605 | } |
| 606 | |
| 607 | function getLowMemoryFlags(): string[] { |
| 608 | const total = getSystemTotalMb(); |
no test coverage detected