mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
List all GPU IDs in settings with names on tooltip, sort NvGpus by VRAM
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user