Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion onnxruntime/core/common/cpuid_info.cc
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ std::string CPUIDInfo::GetX86Vendor(int32_t* data) {

uint32_t CPUIDInfo::GetVendorId(const std::string& vendor) {
if (vendor == "GenuineIntel") return 0x8086;
if (vendor == "GenuineAMD") return 0x1022;
if (vendor == "AuthenticAMD") return 0x1022;
if (vendor.find("Qualcomm") == 0) return 'Q' | ('C' << 8) | ('O' << 16) | ('M' << 24);
if (vendor.find("NV") == 0) return 0x10DE;
return 0;
Expand Down
Loading