List all GPU IDs in settings with names on tooltip, sort NvGpus by VRAM

This commit is contained in:
N00MKRAD
2024-11-24 03:39:52 +01:00
parent 7aab7158fa
commit 2c1882c814
4 changed files with 913 additions and 895 deletions

View File

@@ -25,7 +25,7 @@ namespace Flowframes.Os
if (gpus.Length == 0)
return;
NvGpus = gpus.ToList();
NvGpus = gpus.OrderByDescending(g => g.GetVramGb()).ThenBy(g => g.FullName).ToList();
float mostVram = -1f;
foreach (PhysicalGPU gpu in gpus)