mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 11:09:58 +00:00
main: Append AVX and FMA instructions to cpu string
Append AVX and FMA instructions to cpu string if the host cpu supports them
This commit is contained in:
parent
97ba520434
commit
9bb5bf0b2b
1 changed files with 14 additions and 1 deletions
|
@ -217,7 +217,20 @@ GMainWindow::GMainWindow()
|
||||||
LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", yuzu_build_version, Common::g_scm_branch,
|
LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", yuzu_build_version, Common::g_scm_branch,
|
||||||
Common::g_scm_desc);
|
Common::g_scm_desc);
|
||||||
#ifdef ARCHITECTURE_x86_64
|
#ifdef ARCHITECTURE_x86_64
|
||||||
LOG_INFO(Frontend, "Host CPU: {}", Common::GetCPUCaps().cpu_string);
|
const auto& caps = Common::GetCPUCaps();
|
||||||
|
std::string cpu_string = caps.cpu_string;
|
||||||
|
if (caps.avx || caps.avx2 || caps.avx512) {
|
||||||
|
cpu_string += " | AVX";
|
||||||
|
if (caps.avx512) {
|
||||||
|
cpu_string += "512";
|
||||||
|
} else if (caps.avx2) {
|
||||||
|
cpu_string += '2';
|
||||||
|
}
|
||||||
|
if (caps.fma || caps.fma4) {
|
||||||
|
cpu_string += " | FMA";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LOG_INFO(Frontend, "Host CPU: {}", cpu_string);
|
||||||
#endif
|
#endif
|
||||||
LOG_INFO(Frontend, "Host OS: {}", QSysInfo::prettyProductName().toStdString());
|
LOG_INFO(Frontend, "Host OS: {}", QSysInfo::prettyProductName().toStdString());
|
||||||
LOG_INFO(Frontend, "Host RAM: {:.2f} GB",
|
LOG_INFO(Frontend, "Host RAM: {:.2f} GB",
|
||||||
|
|
Loading…
Reference in a new issue