-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
502 lines (426 loc) · 19.7 KB
/
Program.cs
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Management;
using System.Runtime.InteropServices;
using Benchmark;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Running;
using Hardware.Info;
using NvAPIWrapper;
using NvAPIWrapper.Display;
using NvAPIWrapper.GPU;
using SharpDX.DXGI;
using Device = SharpDX.Direct3D11.Device;
class Program
{
static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Welcome to the best benchmark in the entire universe");
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("-----------------------------------------------------------");
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
DisplayMacInfo();
//DisplayMacInfoByPowermetrics();
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
DisplayWindowsInfo();
}
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Continue to benchmark? (y/n): ");
var input = Console.ReadLine();
if (string.Equals(input, "y", StringComparison.OrdinalIgnoreCase))
{
RunBenchmark();
}
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
// Prevent app exit on macOS
Console.WriteLine("Press Enter to exit to exit...");
Console.ReadLine();
}
}
static void PasswordPrompt()
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.Write("Enter your password for sudo access: ");
string? password = ReadPassword();
var startInfo = new ProcessStartInfo
{
FileName = "/usr/bin/sudo"
};
var process = new Process { StartInfo = startInfo };
process.Start();
using (var writer = process.StandardInput)
{
writer.WriteLine(password);
}
while (!process.StandardOutput.EndOfStream)
{
string? line = process.StandardOutput.ReadLine();
if (line != null)
{
Console.WriteLine(line);
}
}
string? error = process.StandardError.ReadToEnd();
if (!string.IsNullOrEmpty(error))
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine($"Error: {error}");
}
}
// Read pw w/o echoing to console
static string ReadPassword()
{
string password = string.Empty;
ConsoleKeyInfo keyInfo;
do
{
keyInfo = Console.ReadKey(intercept: true);
if (keyInfo.Key != ConsoleKey.Enter)
{
password += keyInfo.KeyChar;
}
} while (keyInfo.Key != ConsoleKey.Enter);
Console.WriteLine();
return password;
}
static void DisplayMacInfo()
{
Console.ForegroundColor = ConsoleColor.Cyan;
var startInfo = new ProcessStartInfo
{
FileName = "/usr/sbin/system_profiler",
Arguments = "SPSoftwareDataType SPHardwareDataType SPMemoryDataType SPDisplaysDataType",
RedirectStandardOutput = true,
UseShellExecute = false
};
var process = new Process { StartInfo = startInfo };
process.Start();
var exclusions = new List<string>
{
"Serial Number (system):", "Hardware UUID:", "Model Number:", "Provisioning UDID:", "Boot Volume:",
"Boot Mode:", "Computer Name:", "User Name:", "Kernel Version: Darwin", "Secure Virtual Memory: Enabled",
"System Integrity Protection: Enabled", "Time since boot:", "System Firmware Version:", "OS Loader Version:",
"Activation Lock Status:", "Bus: Built-In", "Vendor:"
};
while (!process.StandardOutput.EndOfStream)
{
string? line = process.StandardOutput.ReadLine();
if (line != null && !exclusions.Any(line.Contains))
{
Console.WriteLine(line);
}
}
}
static void DisplayMacInfoByPowermetrics()
{
Console.ForegroundColor = ConsoleColor.Cyan;
var startInfo = new ProcessStartInfo
{
FileName = "/usr/bin/powermetrics",
Arguments = "sudo powermetrics --samplers cpu_power,gpu_power -n 1s",
RedirectStandardOutput = true,
UseShellExecute = false
};
var process = new Process { StartInfo = startInfo };
process.Start();
while (!process.StandardOutput.EndOfStream)
{
string? line = process.StandardOutput.ReadLine();
if (line != null)
{
Console.WriteLine(line);
}
}
}
static void DisplayWindowsInfo()
{
ConsoleSpinner.Start();
DisplayCpuInfo();
DisplayRamInfo();
DisplayGpuInfo();
ConsoleSpinner.Stop();
}
static async void DisplayCpuInfo()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
using var searcher = new ManagementObjectSearcher("SELECT * FROM Win32_Processor");
foreach (var item in searcher.Get())
{
try
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine("[CPU Information]");
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Processor Name: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(item["Name"]);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Cores: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write($"{item["NumberOfCores"]}");
Console.ForegroundColor = ConsoleColor.White;
Console.Write(", Threads: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(item["NumberOfLogicalProcessors"]);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Base Frequency: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0}MHz", item["MaxClockSpeed"]);
IHardwareInfo hardwareInfo = new HardwareInfo();
hardwareInfo.RefreshAll();
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Current Frequency: ");
Console.ForegroundColor = ConsoleColor.Yellow;
foreach (var cpu in hardwareInfo.CpuList)
{
Console.WriteLine("{0}MHz", cpu.CurrentClockSpeed);
}
Console.ForegroundColor = ConsoleColor.White;
Console.Write("L2 Cache: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0}MB", Convert.ToInt64(item["L2CacheSize"]) / 1024);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("L3 Cache: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0}MB", Convert.ToInt64(item["L3CacheSize"]) / 1024);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Voltage: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0}V", item["CurrentVoltage"]);
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("-----------------------------------------------------------");
}
catch (Exception ex)
{
Console.WriteLine("An error occurred while retrieving CPU information: " + ex.Message);
}
await Task.Delay(500);
}
}
}
static async void DisplayRamInfo()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
using var searcher = new ManagementObjectSearcher("SELECT * FROM Win32_PhysicalMemory");
try
{
long totalCapacity = 0;
string? manufacturer = null;
foreach (ManagementObject item in searcher.Get().Cast<ManagementObject>())
{
totalCapacity += Convert.ToInt64(item["Capacity"]);
manufacturer = item["Manufacturer"]?.ToString()?.Trim();
}
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine("[Memory Information]");
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Total Capacity: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0} GB", totalCapacity / (1024 * 1024 * 1024));
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Manufacturer: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(manufacturer);
searcher.Query = new ObjectQuery("SELECT * FROM Win32_PhysicalMemory");
int slotNumber = 1;
foreach (ManagementObject item in searcher.Get().Cast<ManagementObject>())
{
Console.WriteLine();
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("(Slot {0})", slotNumber++);
Console.Write("Speed: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0} MHz", item["Speed"]);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Capacity: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0} GB", Convert.ToInt64(item["Capacity"]) / (1024 * 1024 * 1024));
}
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("-----------------------------------------------------------");
}
catch (Exception ex)
{
Console.WriteLine("An error occurred while retrieving memory information: " + ex.Message);
}
await Task.Delay(500);
}
}
static async void DisplayGpuInfo()
{
try
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
using var searcher = new ManagementObjectSearcher("SELECT * FROM Win32_VideoController");
bool hasNvidiaGPU = PhysicalGPU.GetPhysicalGPUs().Any(gpu => gpu.FullName.Contains("NVIDIA"));
if (hasNvidiaGPU)
{
NVIDIA.Initialize();
var nvidiaGPUs = PhysicalGPU.GetPhysicalGPUs();
var driver = NVIDIA.DriverVersion;
var driverbranch = NVIDIA.DriverBranchVersion;
foreach (var gpu in nvidiaGPUs)
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine("[GPU Information]");
Console.ForegroundColor = ConsoleColor.White;
Console.Write("GPU Type: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(gpu.GPUType);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Name: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(gpu.FullName);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("GPU Core: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(gpu.ArchitectInformation.ShortName);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Shaders: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(gpu.ArchitectInformation.NumberOfCores);
var graphicsClockMHz = gpu.BoostClockFrequencies.GraphicsClock.Frequency / 1000;
Console.ForegroundColor = ConsoleColor.White;
Console.Write("GPU Core Speed: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0} MHz", graphicsClockMHz);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("VRAM: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0} MB", gpu.MemoryInformation.DedicatedVideoMemoryInkB / 1024);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("VRAM Type: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(gpu.MemoryInformation.RAMType);
var memoryClockMHz = gpu.BoostClockFrequencies.MemoryClock.Frequency / 1000;
Console.ForegroundColor = ConsoleColor.White;
Console.Write("VRAM Frequency: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0} MHz", memoryClockMHz);
}
}
foreach (var item in searcher.Get())
{
var manufacturer = item["AdapterCompatibility"]?.ToString();
if (manufacturer == null) continue;
if (manufacturer.ToLower().Contains("nvidia")) continue;
if (manufacturer.ToLower().Contains("intel") || manufacturer.ToLower().Contains("amd"))
{
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("-----------------------------------------------------------");
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine("[Integrated GPU]");
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Name: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(item["Name"]);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Manufacturer: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(manufacturer);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Driver Version: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(item["DriverVersion"]);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("VRAM: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0} MB", Convert.ToUInt64(item["AdapterRAM"]) / (1024 * 1024));
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("-----------------------------------------------------------");
}
else
{
if (manufacturer.ToLower().Contains("advanced micro devices"))
{
manufacturer = "AMD";
}
if (!hasNvidiaGPU)
{
using var factory = new Factory1();
using var adapter = factory.GetAdapter(0);
var desc = adapter.Description;
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Name: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(desc.Description);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Manufacturer: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(manufacturer);
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Driver Version: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(item["DriverVersion"]);
if (desc.DedicatedVideoMemory == 0)
{
Console.WriteLine("No dedicated GPU memory found");
}
else
{
Console.ForegroundColor = ConsoleColor.White;
Console.Write("VRAM: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0} MB", desc.DedicatedVideoMemory / (1024 * 1024));
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Shared Memory: ");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("{0} MB", desc.SharedSystemMemory / (1024 * 1024));
}
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("-----------------------------------------------------------");
}
}
}
}
}
catch (Exception ex)
{
Console.WriteLine("An error occurred while retrieving GPU information: " + ex.Message);
}
await Task.Delay(500);
}
static void RunBenchmark()
{
Console.WriteLine("Choose a benchmark to run:");
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine("1. Hashing Benchmark");
Console.WriteLine("2. Encryption Benchmark");
Console.WriteLine("3. Multithread Benchmark");
Console.WriteLine("4. Run all benchmarks");
#if DEBUG
Console.WriteLine("5. Debug Mode");
#endif
Console.ForegroundColor = ConsoleColor.White;
Console.Write("Enter the number of your choice: ");
string? choice = Console.ReadLine();
var benchmarkActions = new Dictionary<string, Action>
{
["1"] = () => BenchmarkRunner.Run<HashingBenchmark>(),
["2"] = () => BenchmarkRunner.Run<EncryptionBenchmark>(),
["3"] = () => BenchmarkRunner.Run<CPUBenchmark>(),
["4"] = () => BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).RunAll(),
#if DEBUG
["5"] = () => BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(new[] { "Benchmarks" }, new DebugInProcessConfig())
#endif
};
if (choice != null && benchmarkActions.TryGetValue(choice, out Action? benchmarkAction))
{
benchmarkAction?.Invoke();
}
else
{
Console.WriteLine("Invalid choice.");
}
}
}