We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47b378d commit a2b7a48Copy full SHA for a2b7a48
onnxruntime/core/common/cpuid_info.cc
@@ -170,7 +170,7 @@ std::string CPUIDInfo::GetX86Vendor(int32_t* data) {
170
171
uint32_t CPUIDInfo::GetVendorId(const std::string& vendor) {
172
if (vendor == "GenuineIntel") return 0x8086;
173
- if (vendor == "GenuineAMD") return 0x1022;
+ if (vendor == "AuthenticAMD") return 0x1022;
174
if (vendor.find("Qualcomm") == 0) return 'Q' | ('C' << 8) | ('O' << 16) | ('M' << 24);
175
if (vendor.find("NV") == 0) return 0x10DE;
176
return 0;
0 commit comments