Re: [PATCH 0/2] simplify building x86 code with AVX2 support

2023-10-12 Thread David Marchand
Hello Bruce, On Thu, Jul 27, 2023 at 11:31 AM Bruce Richardson wrote: > > Inside our optimized vector drivers (and libs), there were always build > time checks for various levels of instruction set support, most > notably AVX2 and AVX-512 on x86 systems. One of the checks done in > each case was

[PATCH 0/2] simplify building x86 code with AVX2 support

2023-07-27 Thread Bruce Richardson
Inside our optimized vector drivers (and libs), there were always build time checks for various levels of instruction set support, most notably AVX2 and AVX-512 on x86 systems. One of the checks done in each case was verifying that the compiler used was able to generate AVX code appropriately. Howe