Skip to content
Snippets Groups Projects
Commit d5b2efdb authored by Branislav Jansik's avatar Branislav Jansik
Browse files

Find out about CPU architecture

Fixed vbmi info
parent 4e7d01d8
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ printf("AVX512er : %d\n", (int) getbits(ebx,27,1));
printf("AVX512cd : %d\n", (int) getbits(ebx,28,1));
printf("AVX512bw : %d\n", (int) getbits(ebx,30,1));
printf("AVX512vi : %d\n", (int) getbits(ebx,31,1));
printf("AVX512vbmi: %d\n", (int) getbits(ecx,2,1));
printf("AVX512vbmi: %d\n", (int) getbits(ecx,1,1));
printf("AVX512vnni: %d\n", (int) getbits(ecx,11,1));
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment