We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71084e4 commit d24392cCopy full SHA for d24392c
src/ngscopeclient/HardwareFlagsDialog.cpp
@@ -71,11 +71,13 @@ bool HardwareFlagsDialog::DoRender()
71
72
if(ImGui::CollapsingHeader("CPU"))
73
{
74
+ #ifdef __x86_64__
75
ImGui::Checkbox("FMA", &g_hasFMA);
76
ImGui::Checkbox("AVX2", &g_hasAvx2);
77
ImGui::Checkbox("AVX512F", &g_hasAvx512F);
78
ImGui::Checkbox("AVX512VL", &g_hasAvx512VL);
79
ImGui::Checkbox("AVX512DQ", &g_hasAvx512DQ);
80
+ #endif
81
}
82
83
if(ImGui::CollapsingHeader("GPU"))
0 commit comments