Mobile and Desktop Processors
Intel® Core™ processors, Intel Atom® processors, tools, and utilities
Avisos
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
16840 Discusiones

EAX=7, ECX=0: Extended Features

CPUID
Principiante
1.518 Vistas

using the attached files, how can I add the CPU feature AVX2 to my binary file

 

I have converted Hexadecimal to Binary for my needs but I'm not sure which code represents AVX2. I think it's suppose to be EAX=7 but which is it, if anyone knows, please

0 kudos
2 Respuestas
Steven_Intel
Moderador
1.485 Vistas

Hello CPUID,


Thank you for posting on the Intel® communities.


Is this related to your other post in this link? https://community.intel.com/t5/Processors/ESXi-7-0e-with-Ryzen-5950x/m-p/1390254#M58103


Best regards,


Steven G.

Intel Customer Support Technician.


n_scott_pearson
Superusuario
1.476 Vistas

CPUID should be invoked with EAX=0x07 and ECX=0x00. In the resulting EBX value, availability of AVX2 is indicated by Bit 05. To check it, you should AND the EBX value with 0x20; if the result is then non-zero, you know your processor has support for AVX2.

Hope this helps,

...S

Responder