-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibXPUInfo.cpp
2015 lines (1850 loc) · 51.9 KB
/
LibXPUInfo.cpp
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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (C) 2024 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#include "LibXPUInfo.h"
#include "LibXPUInfo_Util.h"
#ifdef _WIN32
#include <d3d11_4.h>
#include <wrl/client.h>
#pragma comment(lib, "RuntimeObject.lib")
#include "DebugStream.h"
#include <psapi.h>
#endif // _WIN32
#include <sstream>
#include <exception>
#include <iomanip>
#include <unordered_map>
#if defined(__APPLE__)
#include <sys/sysctl.h>
#include <mach/vm_statistics.h>
#include <mach/mach_init.h>
#include <mach/mach_host.h>
#include <mach/task.h>
#endif
#if defined(__linux__)
#include <sys/sysinfo.h>
#include <unistd.h>
#endif
#if defined(_WIN32) && !defined(_M_ARM64)
namespace WRL = Microsoft::WRL;
#endif
namespace XI
{
void ErrorHandlerDefault(const std::string& message, const char* fileName, const int lineNumber)
{
std::ostringstream err;
err << message << " at " << fileName << ":" << lineNumber;
throw std::logic_error(err.str().c_str());
}
ErrorHandlerType g_ErrorHandlerFunc = ErrorHandlerDefault;
ErrorHandlerType getErrorHandlerFunc()
{
return g_ErrorHandlerFunc;
}
ErrorHandlerType setErrorHandlerFunc(ErrorHandlerType f)
{
ErrorHandlerType tmp = g_ErrorHandlerFunc;
g_ErrorHandlerFunc = f;
return tmp;
}
bool XPUInfo::hasDXCore()
{
#ifdef XPUINFO_USE_DXCORE
// NOTE: We can catch delay-load failure in CreateDXCore(), so this could be removed by refactoring. It works, though.
// These dlls must be delay-loaded: nvml.dll;dxcore.dll;ext-ms-win-dxcore-l1-1-0.dll
// To verify set of delay-loaded dlls, use this on oldest supported OS: https://github.com/lucasg/Dependencies
static bool bHasDXCore = false;
static bool bHasDXCoreInitialized = false;
static std::mutex HasDXCoreMutex;
if (bHasDXCoreInitialized)
{
return bHasDXCore;
}
{
std::lock_guard<std::mutex> lock(HasDXCoreMutex);
// dxcore.dll should be delay-loaded
// Test by module existing rather than windows version test
HMODULE hDxCore = LoadLibraryA("dxcore.dll");
bool rval = false;
if (hDxCore)
{
bHasDXCore = true;
bHasDXCoreInitialized = true;
rval = true;
FreeLibrary(hDxCore);
}
return rval;
}
#else
return false;
#endif
}
// See https://github.com/oneapi-src/oneDNN/blob/0bbadfe56184c197e2b343f821deab6199f310dd/src/gpu/intel/jit/ngen/npack/neo_packager.hpp#L275
struct ipvParts
{
UI32 revision : 6;
UI32 reserved : 8;
UI32 release : 8;
UI32 architecture : 10;
};
union ipvUnion
{
UI32 ipVersion = 0; // From OpenCL, L0, or IGCL
ipvParts ipv;
};
struct GenName {
UI32 gen; // From Intel Device Information
const char* name;
const char* infName=nullptr; // Part before first '_'
ipvUnion ipvu;
};
#define MAKE_FAMILY_NAME_PAIR(x) {IntelGfxFamily::i##x, #x}
static const std::unordered_map<IntelGfxFamily, std::string> S_IntelGfxFamilyNameMap {
MAKE_FAMILY_NAME_PAIR(Gen9_Generic),
MAKE_FAMILY_NAME_PAIR(Gen11_Generic),
MAKE_FAMILY_NAME_PAIR(Gen12LP_Generic),
MAKE_FAMILY_NAME_PAIR(Gen12HP_DG2),
MAKE_FAMILY_NAME_PAIR(Xe_S),
MAKE_FAMILY_NAME_PAIR(Xe_L_MeteorLakeH),
MAKE_FAMILY_NAME_PAIR(Xe_L_ArrowLakeH),
MAKE_FAMILY_NAME_PAIR(Xe2_Generic),
MAKE_FAMILY_NAME_PAIR(Xe2_LunarLake),
MAKE_FAMILY_NAME_PAIR(Xe2_BattleMage),
MAKE_FAMILY_NAME_PAIR(Xe3_Generic)
};
IntelGfxFamily getIntelGfxFamily(ipvParts ipv)
{
IntelGfxFamily outFamily = IntelGfxFamily::iUnknown;
switch (ipv.architecture)
{
case 9: outFamily = IntelGfxFamily::iGen9_Generic; break;
case 11: outFamily = IntelGfxFamily::iGen11_Generic; break;
case 12:
outFamily = IntelGfxFamily::iGen12LP_Generic;
if (ipv.release > 50 && ipv.release <= 59)
outFamily = IntelGfxFamily::iGen12HP_DG2;
else if (ipv.release == 70) // MTL-U, ARL-S, ARL-U
outFamily = IntelGfxFamily::iXe_S;
else if (ipv.release == 71)
outFamily = IntelGfxFamily::iXe_L_MeteorLakeH;
else if (ipv.release == 74)
outFamily = IntelGfxFamily::iXe_L_ArrowLakeH;
break;
case 20: outFamily = IntelGfxFamily::iXe2_Generic; break;
case 30: outFamily = IntelGfxFamily::iXe3_Generic; break;
default: outFamily = IntelGfxFamily::iUnknown; break;
}
return outFamily;
}
#if XPUINFO_HAS_CPP17
std::optional<IntelGfxFamilyNamePair> Device::getIntelGfxFamilyName() const
{
if (IsVendor(kVendorId_Intel) && getType()==DEVICE_TYPE_GPU)
{
ipvUnion ipvu;
ipvu.ipVersion = m_props.DeviceIPVersion;
if (ipvu.ipVersion)
{
auto ipFamily = getIntelGfxFamily(ipvu.ipv);
auto ipfIter = S_IntelGfxFamilyNameMap.find(ipFamily);
if (ipfIter != S_IntelGfxFamilyNameMap.end())
{
return *ipfIter;
}
}
}
return std::nullopt;
}
#endif
/* This table is purposefully internal to LibXPUInfo.
* Design goal is to expose information without creating end-user dependency.
* NOTE: So far, the value of "gen" increases with newer generations, but not always with "ipVersion",
* so it is up to the user to do valid comparisons.
* TODO: Create option to override internal table with text input.
*/
static const GenName S_GenNameMap[] =
{
{ 0x0e, "Haswell" }, { 0x10, "Broadwell" }, { 0x12, "Sky Lake" }, { 0x13, "Kaby Lake"}, {0x14, "Coffee Lake"},
{0x1d, "Ice Lake"},
{0x21, "Tiger Lake", "iTGLD", 0x3000000},
{0x23, "Rocket Lake", "iRKLD", 0x3004000},
{0x24, "Raptor Lake S", "iRPLSD", 0x3008000}, {0x24, "Alder Lake S", "iADLSD", 0x3008000}, // Same gen value
{0x25, "Raptor Lake P", "iRPLPD", 0x3008000}, {0x25, "Alder Lake P", "iADLPD", 0x3008000}, // Same gen value
{1210, "DG1"},
{1270, "DG2", "iDG2D", 0x30dc008},
{1272, "Meteor Lake", "iMTL", 0x311c004},
{1272, "Meteor Lake", "MTL_IAG", 0x311c004}, // Inf name first seen with 101.5445
{1273, "Arrow Lake", "iARL", 0x3118004},
{1274, "Battlemage", "BMG_", 0x5004000},
{1275, "Lunar Lake", "iLNL", 0x5010001},
{1275, "Lunar Lake", "LNL_", 0x5010001}, // TODO: Remove one of these when no longer needed
{1275, "Lunar Lake", "LNL_", 0x5010004}, // TODO: Remove one of these when no longer needed
// Devices with no "Intel Device Information" value have negative values
{0x80000000, "NPU2.7", "mtl_w" },
{0x80000000, "NPU2.7", "NPU2_7" },
{0x80000002, "NPU4", "NPU4" }
};
static const int S_numGenNames = sizeof(S_GenNameMap)/sizeof(GenName);
#if 0 // Not used
// Could be used as member of DeviceProperties, but relying on this creates an end-user dependency on having table updated
UI32 getIDIGenFromIPVersion(const UI32 IPVersion)
{
for (int i = 0; i < S_numGenNames; ++i)
{
if (S_GenNameMap[i].ipVersion == IPVersion)
{
return S_GenNameMap[i].gen;
}
}
return 0;
}
#endif
static const std::unordered_map<XI::UI32, XI::String> S_nVArchNames =
{
{2, "Kepler"},
{3, "Maxwell"},
{4, "Pascal"},
{5, "Volta"},
{6, "Turing"},
{7, "Ampere"},
{8, "Ada"},
{9, "Hopper"},
{10, "Blackwell"},
{11, "Orin"},
};
std::ostream& operator<<(std::ostream& s, APIType t)
{
if (t == API_TYPE_UNKNOWN)
{
s << "UNKNOWN";
return s;
}
std::vector<String> apiNames;
for (UI32 mask = 1; mask < API_TYPE_LAST; mask <<= 1)
{
switch (t & mask)
{
#ifdef _WIN32
case API_TYPE_DXGI:
apiNames.push_back("DXGI");
break;
#endif
#ifdef XPUINFO_USE_DXCORE
case API_TYPE_DXCORE:
apiNames.push_back("DXCore");
break;
#endif
#ifdef _WIN32
case API_TYPE_DX11_INTEL_PERF_COUNTER:
apiNames.push_back("Intel Device Information");
break;
#endif
#ifdef XPUINFO_USE_IGCL
case API_TYPE_IGCL:
apiNames.push_back("IGCL");
break;
#endif
#ifdef XPUINFO_USE_LEVELZERO
case API_TYPE_LEVELZERO:
apiNames.push_back("Level Zero");
break;
#endif
#ifdef XPUINFO_USE_OPENCL
case API_TYPE_OPENCL:
apiNames.push_back("OpenCL");
break;
#endif
#ifdef XPUINFO_USE_SETUPAPI
case API_TYPE_SETUPAPI:
apiNames.push_back("SetupAPI");
break;
#endif
#ifdef XPUINFO_USE_NVML
case API_TYPE_NVML:
apiNames.push_back("NVML");
break;
#endif
#ifdef __APPLE__
case API_TYPE_METAL:
apiNames.push_back("Metal");
break;
#endif
#ifdef XPUINFO_USE_WMI
case API_TYPE_WMI:
apiNames.push_back("WMI");
break;
#endif
#ifdef XPUINFO_USE_IGCL
case API_TYPE_IGCL_L0:
apiNames.push_back("IGCL_L0");
break;
#endif
case API_TYPE_DESERIALIZED:
apiNames.push_back("Deserialized");
break;
}
}
size_t i = 0;
for (; i < apiNames.size(); ++i)
{
s << apiNames[i];
if (i < apiNames.size() - 1)
{
s << ", ";
}
}
return s;
}
std::ostream& operator<<(std::ostream& s, DeviceType t)
{
std::stringstream str;
switch (t)
{
case DEVICE_TYPE_CPU:
str << "CPU";
break;
case DEVICE_TYPE_GPU:
str << "GPU";
break;
case DEVICE_TYPE_NPU:
str << "NPU";
break;
case DEVICE_TYPE_OTHER:
str << "Other";
break;
default:
str << "Unknown";
}
s << str.str();
return s;
}
bool PCIAddressType::valid() const
{
return isValidPCIAddr(*this);
}
bool PCIAddressType::GetFromWStr(const WString& inStr)
{
// PCI bus 0, device 2, function 0
std::wistringstream ins(inStr);
domain = 0;
WString tStr;
ins >> tStr;
ins >> tStr;
ins >> bus;
if (ins.good())
{
ins >> tStr; //,
ins >> tStr; //device
ins >> device;
if (ins.good())
{
ins >> tStr;
ins >> tStr;
ins >> function;
if (ins.eof() || ins.good())
{
return valid();
}
}
}
return false;
}
// From https://github.com/GameTechDev/gpudetect/blob/master/GPUDetect.cpp#L448
// Get driver version from LUID and registry
DeviceDriverVersion::DeviceDriverVersion(LUID
#if defined(_WIN32) && !defined(_M_ARM64)
inLuid
#endif
) : mRawVersion(0ULL)
{
#if defined(_WIN32) && !defined(_M_ARM64)
HKEY dxKeyHandle = nullptr;
DWORD numOfAdapters = 0;
if (!inLuid.LowPart && !inLuid.HighPart)
{
// Fail because registry may contain zero values.
return; // Invalid
}
LSTATUS returnCode = ::RegOpenKeyEx(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Microsoft\\DirectX"), 0, KEY_READ, &dxKeyHandle);
if (returnCode != ERROR_SUCCESS)
{
return; // GPUDETECT_ERROR_REG_NO_D3D_KEY;
}
// Find all subkeys
DWORD subKeyMaxLength = 0;
returnCode = ::RegQueryInfoKey(
dxKeyHandle,
nullptr,
nullptr,
nullptr,
&numOfAdapters,
&subKeyMaxLength,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr
);
if (returnCode != ERROR_SUCCESS)
{
return; // GPUDETECT_ERROR_REG_GENERAL_FAILURE;
}
subKeyMaxLength += 1; // include the null character
uint64_t driverVersionRaw = 0;
std::vector<TCHAR> subKeyName(subKeyMaxLength, 0);
for (DWORD i = 0; i < numOfAdapters; ++i)
{
DWORD subKeyLength = subKeyMaxLength;
returnCode = ::RegEnumKeyEx(
dxKeyHandle,
i,
&subKeyName[0],
&subKeyLength,
nullptr,
nullptr,
nullptr,
nullptr
);
if (returnCode == ERROR_SUCCESS)
{
LUID adapterLUID = {};
DWORD qwordSize = sizeof(uint64_t);
returnCode = ::RegGetValue(
dxKeyHandle,
&subKeyName[0],
TEXT("AdapterLuid"),
RRF_RT_QWORD,
nullptr,
&adapterLUID,
&qwordSize
);
if (returnCode == ERROR_SUCCESS // If we were able to retrieve the registry values
&& adapterLUID.HighPart == inLuid.HighPart && adapterLUID.LowPart == inLuid.LowPart) // and if the vendor ID and device ID match
{
// We have our registry key! Let's get the driver version num now
returnCode = ::RegGetValue(
dxKeyHandle,
&subKeyName[0],
TEXT("DriverVersion"),
RRF_RT_QWORD,
nullptr,
&driverVersionRaw,
&qwordSize
);
if (returnCode == ERROR_SUCCESS)
{
mValid = true;
mRawVersion = driverVersionRaw;
break;
}
}
}
}
returnCode = ::RegCloseKey(dxKeyHandle);
XPUINFO_REQUIRE(returnCode == ERROR_SUCCESS);
#endif
}
static int countNumChar(const char c, const std::string& str)
{
int numMatch = 0;
size_t pos = 0;
while (1)
{
size_t newPos = str.find(c, pos);
if (newPos == str.npos)
{
break;
}
if (newPos > pos)
{
++numMatch;
pos = newPos + 1;
}
}
return numMatch;
}
DeviceDriverVersion DeviceDriverVersion::FromString(const std::string& version)
{
// Handle x.y.z.w or just z.w
int numDots = countNumChar('.', version);
std::istringstream istr(version);
std::vector<std::uint16_t> verWords;
verWords.resize(numDots + 1);
int w = 0;
char sep;
istr >> verWords[w++];
for (; w < verWords.size(); ++w)
{
if (istr.bad())
{
break;
}
istr >> sep;
if (sep == '.' && !istr.bad())
{
istr >> verWords[w];
}
}
if (!istr.bad())
{
UI64 verRaw = 0;
for (w = 0; w < verWords.size(); ++w)
{
verRaw = (verRaw << 16) | verWords[w];
}
return DeviceDriverVersion(verRaw);
}
return DeviceDriverVersion(LUID{});
}
const DeviceDriverVersion& DeviceDriverVersion::GetMax()
{
static const auto verInfinite = XI::DeviceDriverVersion(XI::UI64(0xffffffff));
return verInfinite;
}
const DeviceDriverVersion& DeviceDriverVersion::GetMin()
{
static const auto verZero = XI::DeviceDriverVersion(XI::UI64(0));
return verZero;
}
bool DeviceDriverVersion::InRange(const DeviceDriverVersion::VersionRange& range) const
{
XPUINFO_REQUIRE(mValid);
XPUINFO_REQUIRE(range.first.mValid);
XPUINFO_REQUIRE(range.second.mValid);
// this >= first && this <= second == this >= first && second >= this
if (CompareGE(range.first) && range.second.CompareGE(*this))
{
return true;
}
return false;
}
String DeviceDriverVersion::GetAsString() const
{
if (mValid)
{
std::stringstream outStr;
outStr << (unsigned int)((mRawVersion & 0xFFFF000000000000) >> 16 * 3) << "." <<
(unsigned int)((mRawVersion & 0x0000FFFF00000000) >> 16 * 2) << "." <<
(unsigned int)((mRawVersion & 0x00000000FFFF0000) >> 16 * 1) << "." <<
(unsigned int)((mRawVersion & 0x000000000000FFFF));
return outStr.str();
}
else
{
return "InvalidVersion";
}
}
WString DeviceDriverVersion::GetAsWString() const
{
if (mValid)
{
std::wstringstream outStr;
outStr << (unsigned int)((mRawVersion & 0xFFFF000000000000) >> 16 * 3) << "." <<
(unsigned int)((mRawVersion & 0x0000FFFF00000000) >> 16 * 2) << "." <<
(unsigned int)((mRawVersion & 0x00000000FFFF0000) >> 16 * 1) << "." <<
(unsigned int)((mRawVersion & 0x000000000000FFFF));
return outStr.str();
}
else
{
return L"InvalidVersion";
}
}
bool DeviceDriverVersion::CompareGE(const DeviceDriverVersion& rhs) const
{
UI64 inBuildNumberLast4Digits = (rhs.mRawVersion & 0x000000000000FFFF);
bool last4ge = (std::uint16_t)((mRawVersion & 0x000000000000FFFF)) >= inBuildNumberLast4Digits;
std::uint16_t curRelease = (std::uint16_t)((mRawVersion & 0x00000000FFFF0000) >> 16 * 1);
std::uint16_t inReleaseField = (std::uint16_t)((rhs.mRawVersion & 0x00000000FFFF0000) >> 16 * 1);
return (curRelease > inReleaseField) || ((curRelease >= inReleaseField) && last4ge);
}
bool DeviceDriverVersion::AtLeast(std::uint16_t inBuildNumberLast4Digits, std::uint16_t inReleaseField) const
{
bool last4ge = (std::uint16_t)((mRawVersion & 0x000000000000FFFF)) >= inBuildNumberLast4Digits;
std::uint16_t curRelease = (std::uint16_t)((mRawVersion & 0x00000000FFFF0000) >> 16 * 1);
if (inReleaseField == kReleaseNumber_Ignore)
{
// Intel drivers have format a.b.c.xxxx where a, b are not used for versioning. For build number,
// compare only the last 4 digits when c <= 100. Builds with c > 100 (e.g. a.b.101.xxxx) should pass this check.
return (curRelease > 100) || last4ge;
}
else
{
return (curRelease > inReleaseField) || ((curRelease >= inReleaseField) && last4ge);
}
}
bool PCIAddressType::operator==(const PCIAddressType& inRHS) const
{
return (domain == inRHS.domain) &&
(bus == inRHS.bus) &&
(device == inRHS.device) &&
(function == inRHS.function);
}
bool RuntimeVersion::operator!=(const RuntimeVersion& l) const
{
return (major != l.major) || (minor != l.minor) ||
(build != l.build || (productVersion != l.productVersion));
}
bool RuntimeVersion::operator==(const RuntimeVersion& l) const
{
return !operator!=(l);
}
#if defined(_WIN32) && !defined(_M_ARM64)
void XPUInfo::initDXGI(APIType initMask)
{
DWORD dxgiFactoryFlags = 0;
#ifdef _DEBUG
dxgiFactoryFlags |= DXGI_CREATE_FACTORY_DEBUG;
#endif
WRL::ComPtr<IDXGIFactory4> currentFactory;
CreateDXGIFactory2(dxgiFactoryFlags, IID_PPV_ARGS(currentFactory.GetAddressOf())); // List of devices created here - need to re-init if devices change
WRL::ComPtr<IDXGIAdapter1> adapter;
for (UINT adapterIndex = 0;
currentFactory->EnumAdapters1(adapterIndex, &adapter) != DXGI_ERROR_NOT_FOUND;
++adapterIndex)
{
DXGI_ADAPTER_DESC1 desc{};
HRESULT hres = adapter->GetDesc1(&desc);
if (SUCCEEDED(hres))
{
if ((desc.VendorId == 0x1414) && (desc.DeviceId == 0x8c))
{
continue; // Skip "Microsoft Basic Render Driver"
}
else
{
{
DebugStreamW dStr(false);
dStr << L"Adapter " << adapterIndex << L": " << desc.Description << L", Vendor = " << std::hex << desc.VendorId << std::dec << std::endl;
}
//LARGE_INTEGER ver;
//hres = adapter->CheckInterfaceSupport(__uuidof(IDXGIDevice), &ver); // Essentially the DX10 driver version - seems to be valid even for RDP virtual adapter
DevicePtr newDevice(new Device(adapterIndex, &desc));
if (!!newDevice && newDevice->driverVersion().Valid())
{
UI64 uiLuid = newDevice->getLUID();
auto newIt = m_Devices.insert(std::make_pair(uiLuid, newDevice));
if (!(m_UsedAPIs & API_TYPE_DXGI))
m_UsedAPIs = m_UsedAPIs | API_TYPE_DXGI;
if ((initMask & API_TYPE_DX11_INTEL_PERF_COUNTER) &&
newDevice->IsVendor(kVendorId_Intel)) // Early-out for non-Intel devices
{
newIt.first->second->initDXIntelPerfCounter(adapter.Get());
if (!(m_UsedAPIs & API_TYPE_DX11_INTEL_PERF_COUNTER)
&& (newIt.first->second->getCurrentAPIs() & API_TYPE_DX11_INTEL_PERF_COUNTER))
{
m_UsedAPIs = m_UsedAPIs | API_TYPE_DX11_INTEL_PERF_COUNTER;
}
}
}
}
}
}
// Show displays connected
#if 0
{
std::ostream& dStr = std::cout;
int maxDevNum = 0;
DISPLAY_DEVICEA tempDD, monitor;
ZeroMemory(&tempDD, sizeof(DISPLAY_DEVICEA));
tempDD.cb = sizeof(DISPLAY_DEVICEA);
monitor.cb = sizeof(DISPLAY_DEVICEA);
DISPLAY_DEVICEA tempDD2;
ZeroMemory(&tempDD2, sizeof(DISPLAY_DEVICEA));
tempDD2.cb = sizeof(DISPLAY_DEVICEA);
BOOL bRet = TRUE;
while (bRet)
{
bRet = EnumDisplayDevicesA(NULL, maxDevNum, &tempDD, 0);
if (tempDD.StateFlags & DISPLAY_DEVICE_ATTACHED_TO_DESKTOP)
{
dStr << "Display " << maxDevNum << ": " << tempDD.DeviceName;
if (tempDD.StateFlags & DISPLAY_DEVICE_PRIMARY_DEVICE)
{
dStr << " *PRIMARY*";
}
dStr << "\n\t" << tempDD.DeviceString << " - " << tempDD.DeviceID << "\n\t - " << tempDD.DeviceKey;
// TODO: Get DeviceKey/DriverDate for date string - or figure out how to parse DriverDateData
// ? https://learn.microsoft.com/en-us/windows-hardware/drivers/install/devpkey-device-driverdate
bRet = EnumDisplayDevicesA(tempDD.DeviceName, 0, &monitor, 0);
dStr << "\n\t on " << monitor.DeviceString;
DEVMODEA devMode;
memset(&devMode, 0, sizeof(devMode));
devMode.dmSize = sizeof(devMode);
bRet = EnumDisplaySettingsExA(tempDD.DeviceName, ENUM_CURRENT_SETTINGS, &devMode, 0);
if (bRet)
{
dStr << ", " << devMode.dmPelsWidth << "x" << devMode.dmPelsHeight << " " << devMode.dmBitsPerPel << "bpp @ " << devMode.dmDisplayFrequency << "Hz";
}
dStr << std::endl;
}
++maxDevNum;
}
}
#endif
}
#endif // WIN32
void XPUInfo::finalInitDXGI()
{
// If no other APIs have determined UMA, guess from memory sizes
const UI64 k256MB = 256 * 1024 * 1024ULL;
const UI64 k2GB = 2 * 1024 * 1024 * 1024ULL;
for (auto& it : m_Devices)
{
if (it.second->m_props.UMA == UMA_UNKNOWN)
{
if ((it.second->m_props.dxgiDesc.DedicatedVideoMemory <= k256MB) &&
(it.second->m_props.dxgiDesc.SharedSystemMemory >= k2GB))
{
// For example, if DXCore's DXCoreAdapterProperty::IsIntegrated is not supported for NPU, this will mark it as integrated
it.second->m_props.UMA = UMA_INTEGRATED;
}
else if (it.second->m_props.dxgiDesc.DedicatedVideoMemory >= k2GB)
{
it.second->m_props.UMA = NONUMA_DISCRETE;
}
}
}
}
// Note: HybridDetect is one of the bigger contributors to binary size (at least on Win/x64) - consider a streamlined implementation for clients minimizing binary size
DeviceCPU::DeviceCPU() : DeviceBase(DeviceBase::kAdapterIndex_CPU, DEVICE_TYPE_CPU),
m_initialMXCSR(getcsr())
{
m_pProcInfo.reset(new HybridDetect::PROCESSOR_INFO);
if (m_pProcInfo)
{
HybridDetect::GetProcessorInfo(*m_pProcInfo);
}
}
UI32 DeviceCPU::getcsr()
{
static const int MXCSR_CONTROL_MASK = ~0x3f; /* all except last six status bits */
UI32 mxcsr;
#if XPUINFO_CPU_X86_64
#ifdef _WIN32
mxcsr = _mm_getcsr();
#else
__asm__ __volatile__(
"stmxcsr %0"
: "=m"(mxcsr)
);
#endif
#else
mxcsr = 0;
#endif
return mxcsr & MXCSR_CONTROL_MASK;
}
WString DeviceCPU::name() const
{
if (m_pProcInfo)
{
return convert(m_pProcInfo->brandString);
}
return WString();
}
Device::Device(UI32 inIndex, DXGI_ADAPTER_DESC1* pDesc, DeviceType inType, APIType inAPI,
XI::UI64 rawDriverVerion) : DeviceBase(inIndex)
{
if (pDesc)
{
m_props.dxgiDesc = *pDesc; // copy
m_type = inType;
validAPIs = validAPIs | inAPI;
if (!rawDriverVerion)
{
m_pDriverVersion.reset(new DeviceDriverVersion(m_props.dxgiDesc.AdapterLuid));
}
else
{
m_pDriverVersion.reset(new DeviceDriverVersion(rawDriverVerion));
}
#if defined(_WIN32) && defined(_DEBUG)
{
DebugStreamW dStr(false);
dStr << L"Device: " << name() << L", LUID = " << std::hex << getLUID() << std::dec << L", Version = " << m_pDriverVersion->GetAsWString() << std::endl;
}
#endif
m_props.DedicatedMemorySize = m_props.dxgiDesc.DedicatedVideoMemory;
m_props.SharedMemorySize = m_props.dxgiDesc.SharedSystemMemory;
}
}
Device::~Device()
{
}
static const DeviceDriverVersion S_NullDriverVersion(LUID{});
const DeviceDriverVersion& Device::driverVersion() const
{
if (m_pDriverVersion)
{
return *m_pDriverVersion;
}
else
{
return S_NullDriverVersion;
}
}
DeviceProperties::DeviceProperties()
{
// Initialize to -1 to indicate unknown across all members of union
memset(&VendorSpecific, -1, sizeof(VendorSpecific));
};
const char* DeviceProperties::getDeviceGenerationName() const
{
if ((DeviceGenerationAPI == API_TYPE_DX11_INTEL_PERF_COUNTER) || (DeviceGenerationAPI == API_TYPE_SETUPAPI))
{
for (int i = S_numGenNames-1; i >= 0; --i)
{
if (S_GenNameMap[i].gen == (UI32)DeviceGenerationID)
{
return S_GenNameMap[i].name;
}
}
}
else if ((DeviceGenerationAPI == API_TYPE_OPENCL) || (DeviceGenerationAPI == API_TYPE_LEVELZERO))
{
for (int i = S_numGenNames - 1; i >= 0; --i)
{
if (S_GenNameMap[i].ipvu.ipVersion == (UI32)DeviceGenerationID)
{
return S_GenNameMap[i].name;
}
}
}
else if (DeviceGenerationAPI == API_TYPE_NVML)
{
std::unordered_map<XI::UI32, XI::String>::const_iterator it = S_nVArchNames.find(DeviceGenerationID);
if (it != S_nVArchNames.end())
{
return it->second.c_str();
}
}
return nullptr;
}
UI64 DeviceProperties::getVideoMemorySize() const
{
return (UMA == UMA_INTEGRATED) ? dxgiDesc.DedicatedVideoMemory + dxgiDesc.SharedSystemMemory :
dxgiDesc.DedicatedVideoMemory;
}
XPUInfo::XPUInfo(APIType initMask, const RuntimeNames& runtimeNamesToTrack, size_t clientClassSize) :
m_InitAPIs(initMask), m_UsedAPIs(API_TYPE_UNKNOWN)
{
// Verify class size matches between internal lib and clients
const size_t libClassSize = sizeof(XPUInfo);
XPUINFO_REQUIRE(libClassSize == clientClassSize);
if (!(initMask & API_TYPE_DESERIALIZED))
{
// Skip if this will be deserialized
m_pCPU.reset(new DeviceCPU);
}
#if defined(_WIN32) && defined(XPUINFO_USE_WMI)
std::unique_ptr<std::thread> wmiThreadPtr;
if (initMask & API_TYPE_WMI)
{
wmiThreadPtr.reset(new std::thread([&]() { initWMI(); }));
}
#endif
#if defined(_WIN32) && !defined(_M_ARM64)
if (initMask & (API_TYPE_DXGI | API_TYPE_DX11_INTEL_PERF_COUNTER))
{
initDXGI(initMask); // Must be first
}
#endif
#ifdef XPUINFO_USE_DXCORE
if ((initMask & API_TYPE_DXCORE) && hasDXCore())
{
initDXCore();
}
#endif
#ifdef XPUINFO_USE_IGCL
if (initMask & API_TYPE_IGCL)
{
initIGCL((initMask & API_TYPE_IGCL_L0) != 0);
}
#endif
#ifdef XPUINFO_USE_OPENCL
if (initMask & API_TYPE_OPENCL)
{
// Only try OpenCL if a GPU has already been detected since OpenCL.dll otherwise might not exist
for (const auto& [luid, dev] : m_Devices)
{
if (dev->getType() == DeviceType::DEVICE_TYPE_GPU)
{
initOpenCL();
break;
}
}
}
#endif
#ifdef XPUINFO_USE_LEVELZERO
if (initMask & API_TYPE_LEVELZERO)
{
// Only run if at least 1 Intel GPU found - delay-loading ze_loader.dll
for (const auto& [luid, dev] : m_Devices)
{
if (dev->IsVendor(kVendorId_Intel))
{
initL0();
break;
}
}
}
#endif
#ifdef XPUINFO_USE_SETUPAPI
if (initMask & API_TYPE_SETUPAPI)
{
m_pSetupInfo.reset(new SetupDeviceInfo);
bool bSDIMatchFound = false;
for (auto& device : m_Devices)
{
DriverInfoPtr pSDI = m_pSetupInfo->getByLUID(device.second->getLUID());
if (!pSDI)
{
if (device.second->m_props.PCIAddress.valid())
{
pSDI = m_pSetupInfo->getAtAddress(device.second->m_props.PCIAddress);
}
else
{
// Match name
// TODO: What should happen if multiple devices have the same name? (i.e. 2x RTX 3080?)