Target a specific ISA instead of using the xHost option

Although static analysis presumes the loop may benefit from FMA instructions available with the AVX2 or higher ISA, no FMA instructions executed for this loop. To fix: Instead of using the xHost compiler option, which limits optimization opportunities by the host ISA, use the following compiler options:Note: the compiler options may vary depending on the CPU microarchitecture.
Windows* OSLinux* OS
/QxCORE-AVX2 or /QaxCORE-AVX2-xCORE-AVX2 or -axCORE-AVX2
/QxCOMMON-AVX512 or /QaxCOMMON-AVX512-xCOMMON-AVX512 or -axCOMMON-AVX512

Read More