Re: [PATCH v3] hash: fix thash gfni implementation

2021-11-17 Thread David Marchand
On Tue, Nov 16, 2021 at 3:33 PM Vladimir Medvedkin wrote: > > 1. This patch replaces _mm512_set_epi8 with _mm512_set_epi32 > due to the lack of support by some compilers. > 2. This patch checks if AVX512F is supported along with GFNI. > This is done if the code is built on a platform that supports

[PATCH v3] hash: fix thash gfni implementation

2021-11-16 Thread Vladimir Medvedkin
1. This patch replaces _mm512_set_epi8 with _mm512_set_epi32 due to the lack of support by some compilers. 2. This patch checks if AVX512F is supported along with GFNI. This is done if the code is built on a platform that supports GFNI, but does not support AVX512. 3. Also this patch fixes compilat