forked from LykosAI/StabilityMatrix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHardwareHelper.cs
More file actions
428 lines (350 loc) · 13.3 KB
/
HardwareHelper.cs
File metadata and controls
428 lines (350 loc) · 13.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using System.Text.RegularExpressions;
using Hardware.Info;
using Microsoft.Win32;
using NLog;
using StabilityMatrix.Core.Extensions;
namespace StabilityMatrix.Core.Helper.HardwareInfo;
public static partial class HardwareHelper
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private static IReadOnlyList<GpuInfo>? cachedGpuInfos;
private static readonly Lock cachedGpuInfosLock = new();
private static readonly Lazy<IHardwareInfo> HardwareInfoLazy = new(() => new Hardware.Info.HardwareInfo()
);
public static IHardwareInfo HardwareInfo => HardwareInfoLazy.Value;
private static string RunBashCommand(string command)
{
var processInfo = new ProcessStartInfo("bash", "-c \"" + command + "\"")
{
UseShellExecute = false,
RedirectStandardOutput = true,
};
var process = Process.Start(processInfo);
process.WaitForExit();
var output = process.StandardOutput.ReadToEnd();
return output;
}
[SupportedOSPlatform("windows")]
private static IEnumerable<GpuInfo> IterGpuInfoWindows()
{
const string gpuRegistryKeyPath =
@"SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}";
using var baseKey = Registry.LocalMachine.OpenSubKey(gpuRegistryKeyPath);
if (baseKey == null)
yield break;
var gpuIndex = 0;
foreach (var subKeyName in baseKey.GetSubKeyNames().Where(k => k.StartsWith("0")))
{
using var subKey = baseKey.OpenSubKey(subKeyName);
if (subKey != null)
{
yield return new GpuInfo
{
Index = gpuIndex++,
Name = subKey.GetValue("DriverDesc")?.ToString(),
MemoryBytes = Convert.ToUInt64(subKey.GetValue("HardwareInformation.qwMemorySize")),
};
}
}
}
[SupportedOSPlatform("linux")]
private static IEnumerable<GpuInfo> IterGpuInfoLinux()
{
var output = RunBashCommand("lspci | grep -E '(VGA|3D)'");
var gpuLines = output.Split("\n");
var gpuIndex = 0;
foreach (var line in gpuLines)
{
if (string.IsNullOrWhiteSpace(line))
continue;
var gpuId = line.Split(' ')[0]; // The GPU ID is the first part of the line
var gpuOutput = RunBashCommand($"lspci -v -s {gpuId}");
ulong memoryBytes = 0;
string? name = null;
// Parse output with regex
var match = Regex.Match(gpuOutput, @"(VGA compatible controller|3D controller): ([^\n]*)");
if (match.Success)
{
name = match.Groups[2].Value.Trim();
}
match = Regex.Match(gpuOutput, @"prefetchable\) \[size=(\\d+)M\]");
if (match.Success)
{
memoryBytes = ulong.Parse(match.Groups[1].Value) * 1024 * 1024;
}
yield return new GpuInfo
{
Index = gpuIndex++,
Name = name,
MemoryBytes = memoryBytes,
};
}
}
[SupportedOSPlatform("macos")]
private static IEnumerable<GpuInfo> IterGpuInfoMacos()
{
HardwareInfo.RefreshVideoControllerList();
foreach (var (i, videoController) in HardwareInfo.VideoControllerList.Enumerate())
{
var gpuMemoryBytes = 0ul;
// For arm macs, use the shared system memory
if (Compat.IsArm)
{
gpuMemoryBytes = GetMemoryInfoImplGeneric().TotalPhysicalBytes;
}
yield return new GpuInfo
{
Index = i,
Name = videoController.Name,
MemoryBytes = gpuMemoryBytes,
};
}
}
/// <summary>
/// Yields GpuInfo for each GPU in the system.
/// </summary>
/// <param name="forceRefresh">If true, refreshes cached GPU info.</param>
public static IEnumerable<GpuInfo> IterGpuInfo(bool forceRefresh = false)
{
// Use cached if available
if (!forceRefresh && cachedGpuInfos is not null)
{
return cachedGpuInfos;
}
using var _ = CodeTimer.StartDebug();
lock (cachedGpuInfosLock)
{
if (!forceRefresh && cachedGpuInfos is not null)
{
return cachedGpuInfos;
}
if (Compat.IsMacOS)
{
return cachedGpuInfos = IterGpuInfoMacos().ToList();
}
if (Compat.IsLinux || Compat.IsWindows)
{
try
{
var smi = IterGpuInfoNvidiaSmi()?.ToList();
var fallback = Compat.IsLinux
? IterGpuInfoLinux().ToList()
: IterGpuInfoWindows().ToList();
if (smi is null)
{
return cachedGpuInfos = fallback;
}
var newList = smi.Concat(fallback.Where(gpu => !gpu.IsNvidia))
.Select(
(gpu, index) =>
new GpuInfo
{
Name = gpu.Name,
Index = index,
MemoryBytes = gpu.MemoryBytes,
}
);
return cachedGpuInfos = newList.ToList();
}
catch (Exception e)
{
Logger.Error(e, "Failed to get GPU info using nvidia-smi, falling back to registry");
var fallback = Compat.IsLinux
? IterGpuInfoLinux().ToList()
: IterGpuInfoWindows().ToList();
return cachedGpuInfos = fallback;
}
}
Logger.Error("Unknown OS, returning empty GPU info list");
return cachedGpuInfos = [];
}
}
public static IEnumerable<GpuInfo>? IterGpuInfoNvidiaSmi()
{
using var _ = CodeTimer.StartDebug();
var psi = new ProcessStartInfo
{
FileName = "nvidia-smi",
UseShellExecute = false,
Arguments = "--query-gpu name,memory.total,compute_cap --format=csv",
RedirectStandardOutput = true,
CreateNoWindow = true,
};
var process = Process.Start(psi);
process?.WaitForExit();
var stdout = process?.StandardOutput.ReadToEnd();
var split = stdout?.Split(Environment.NewLine, StringSplitOptions.RemoveEmptyEntries);
var results = split?[1..];
if (results is null)
return null;
var gpuInfos = new List<GpuInfo>();
for (var index = 0; index < results?.Length; index++)
{
var gpu = results[index];
var datas = gpu.Split(',', StringSplitOptions.RemoveEmptyEntries);
if (datas is not { Length: 3 })
continue;
var memory = Regex.Replace(datas[1], @"([A-Z])\w+", "").Trim();
gpuInfos.Add(
new GpuInfo
{
Name = datas[0],
Index = index,
MemoryBytes = Convert.ToUInt64(memory) * Size.MiB,
ComputeCapability = datas[2].Trim(),
}
);
}
return gpuInfos;
}
/// <summary>
/// Return true if the system has at least one Nvidia GPU.
/// </summary>
public static bool HasNvidiaGpu()
{
return IterGpuInfo().Any(gpu => gpu.IsNvidia);
}
public static bool HasBlackwellGpu()
{
return IterGpuInfo()
.Any(gpu => gpu is { IsNvidia: true, Name: not null, ComputeCapabilityValue: >= 12.0m });
}
public static bool HasLegacyNvidiaGpu()
{
return IterGpuInfo()
.Any(gpu => gpu is { IsNvidia: true, Name: not null, ComputeCapabilityValue: < 7.5m });
}
public static bool HasAmpereOrNewerGpu()
{
return IterGpuInfo()
.Any(gpu => gpu is { IsNvidia: true, Name: not null, ComputeCapabilityValue: >= 8.6m });
}
/// <summary>
/// Return true if the system has at least one AMD GPU.
/// </summary>
public static bool HasAmdGpu()
{
return IterGpuInfo().Any(gpu => gpu.IsAmd);
}
public static bool HasWindowsRocmSupportedGpu() =>
IterGpuInfo().Any(gpu => gpu is { IsAmd: true, Name: not null } && gpu.IsWindowsRocmSupportedGpu());
public static GpuInfo? GetWindowsRocmSupportedGpu()
{
return IterGpuInfo().FirstOrDefault(gpu => gpu.IsWindowsRocmSupportedGpu());
}
public static bool HasIntelGpu() => IterGpuInfo().Any(gpu => gpu.IsIntel);
// Set ROCm for default if AMD and Linux
public static bool PreferRocm() => !HasNvidiaGpu() && HasAmdGpu() && Compat.IsLinux;
// Set DirectML for default if AMD and Windows
public static bool PreferDirectMLOrZluda() =>
!HasNvidiaGpu() && HasAmdGpu() && Compat.IsWindows && !HasWindowsRocmSupportedGpu();
private static readonly Lazy<bool> IsMemoryInfoAvailableLazy = new(() => TryGetMemoryInfo(out _));
public static bool IsMemoryInfoAvailable => IsMemoryInfoAvailableLazy.Value;
public static bool IsLiveMemoryUsageInfoAvailable => Compat.IsWindows && IsMemoryInfoAvailable;
public static bool TryGetMemoryInfo(out MemoryInfo memoryInfo)
{
try
{
memoryInfo = GetMemoryInfo();
return true;
}
catch (Exception ex)
{
Logger.Warn(ex, "Failed to get memory info");
memoryInfo = default;
return false;
}
}
/// <summary>
/// Gets the total and available physical memory in bytes.
/// </summary>
public static MemoryInfo GetMemoryInfo() =>
Compat.IsWindows ? GetMemoryInfoImplWindows() : GetMemoryInfoImplGeneric();
[SupportedOSPlatform("windows")]
private static MemoryInfo GetMemoryInfoImplWindows()
{
var memoryStatus = new Win32MemoryStatusEx();
if (!GlobalMemoryStatusEx(ref memoryStatus))
{
throw new Win32Exception(Marshal.GetLastWin32Error());
}
if (!GetPhysicallyInstalledSystemMemory(out var installedMemoryKb))
{
throw new Win32Exception(Marshal.GetLastWin32Error());
}
return new MemoryInfo
{
TotalInstalledBytes = (ulong)installedMemoryKb * 1024,
TotalPhysicalBytes = memoryStatus.UllTotalPhys,
AvailablePhysicalBytes = memoryStatus.UllAvailPhys,
};
}
private static MemoryInfo GetMemoryInfoImplGeneric()
{
HardwareInfo.RefreshMemoryStatus();
// On macos only TotalPhysical is reported
if (Compat.IsMacOS)
{
return new MemoryInfo
{
TotalPhysicalBytes = HardwareInfo.MemoryStatus.TotalPhysical,
TotalInstalledBytes = HardwareInfo.MemoryStatus.TotalPhysical,
};
}
return new MemoryInfo
{
TotalPhysicalBytes = HardwareInfo.MemoryStatus.TotalPhysical,
TotalInstalledBytes = HardwareInfo.MemoryStatus.TotalPhysical,
AvailablePhysicalBytes = HardwareInfo.MemoryStatus.AvailablePhysical,
};
}
/// <summary>
/// Gets cpu info
/// </summary>
public static Task<CpuInfo> GetCpuInfoAsync() =>
Compat.IsWindows ? Task.FromResult(GetCpuInfoImplWindows()) : GetCpuInfoImplGenericAsync();
[SupportedOSPlatform("windows")]
private static CpuInfo GetCpuInfoImplWindows()
{
var info = new CpuInfo();
using var processorKey = Registry.LocalMachine.OpenSubKey(
@"Hardware\Description\System\CentralProcessor\0",
RegistryKeyPermissionCheck.ReadSubTree
);
if (processorKey?.GetValue("ProcessorNameString") is string processorName)
{
info = info with { ProcessorCaption = processorName.Trim() };
}
return info;
}
private static Task<CpuInfo> GetCpuInfoImplGenericAsync()
{
return Task.Run(() =>
{
HardwareInfo.RefreshCPUList();
if (HardwareInfo.CpuList.FirstOrDefault() is not { } cpu)
{
return default;
}
var processorCaption = cpu.Caption.Trim();
// Try name if caption is empty (like on macos)
if (string.IsNullOrWhiteSpace(processorCaption))
{
processorCaption = cpu.Name.Trim();
}
return new CpuInfo { ProcessorCaption = processorCaption };
});
}
[SupportedOSPlatform("windows")]
[LibraryImport("kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static partial bool GetPhysicallyInstalledSystemMemory(out long totalMemoryInKilobytes);
[SupportedOSPlatform("windows")]
[LibraryImport("kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static partial bool GlobalMemoryStatusEx(ref Win32MemoryStatusEx lpBuffer);
}