We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39b168a commit 2ef1aeaCopy full SHA for 2ef1aea
api/tesseractmain.cpp
@@ -96,6 +96,9 @@ void PrintVersionInfo() {
96
}
97
98
#endif
99
+ if (SIMDDetect::IsAVX512BWAvailable()) printf(" Found AVX512BW\n");
100
+ if (SIMDDetect::IsAVX512FAvailable()) printf(" Found AVX512F\n");
101
+ if (SIMDDetect::IsAVX2Available()) printf(" Found AVX2\n");
102
if (SIMDDetect::IsAVXAvailable()) printf(" Found AVX\n");
103
if (SIMDDetect::IsSSEAvailable()) printf(" Found SSE\n");
104
0 commit comments