@@ -121,7 +121,7 @@ pub unsafe fn _mm512_maskz_gf2p8mul_epi8(k: __mmask64, a: __m512i, b: __m512i) -
121121///
122122/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_gf2p8mul_epi8)
123123#[ inline]
124- #[ target_feature( enable = "avx512gfni,avx512bw,avx512vl " ) ]
124+ #[ target_feature( enable = "avx512gfni,avx " ) ]
125125#[ cfg_attr( test, assert_instr( vgf2p8mulb) ) ]
126126pub unsafe fn _mm256_gf2p8mul_epi8 ( a : __m256i , b : __m256i ) -> __m256i {
127127 transmute ( vgf2p8mulb_256 ( a. as_i8x32 ( ) , b. as_i8x32 ( ) ) )
@@ -177,8 +177,8 @@ pub unsafe fn _mm256_maskz_gf2p8mul_epi8(k: __mmask32, a: __m256i, b: __m256i) -
177177///
178178/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_gf2p8mul_epi8)
179179#[ inline]
180- #[ target_feature( enable = "avx512gfni,avx512bw,avx512vl " ) ]
181- #[ cfg_attr( test, assert_instr( vgf2p8mulb ) ) ]
180+ #[ target_feature( enable = "avx512gfni" ) ]
181+ #[ cfg_attr( test, assert_instr( gf2p8mulb ) ) ]
182182pub unsafe fn _mm_gf2p8mul_epi8 ( a : __m128i , b : __m128i ) -> __m128i {
183183 transmute ( vgf2p8mulb_128 ( a. as_i8x16 ( ) , b. as_i8x16 ( ) ) )
184184}
@@ -307,7 +307,7 @@ pub unsafe fn _mm512_mask_gf2p8affine_epi64_epi8<const B: i32>(
307307///
308308/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_gf2p8affine_epi8)
309309#[ inline]
310- #[ target_feature( enable = "avx512gfni,avx512bw,avx512vl " ) ]
310+ #[ target_feature( enable = "avx512gfni,avx " ) ]
311311#[ cfg_attr( test, assert_instr( vgf2p8affineqb, B = 0 ) ) ]
312312#[ rustc_legacy_const_generics( 2 ) ]
313313pub unsafe fn _mm256_gf2p8affine_epi64_epi8 < const B : i32 > ( x : __m256i , a : __m256i ) -> __m256i {
@@ -380,8 +380,8 @@ pub unsafe fn _mm256_mask_gf2p8affine_epi64_epi8<const B: i32>(
380380///
381381/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_gf2p8affine_epi8)
382382#[ inline]
383- #[ target_feature( enable = "avx512gfni,avx512bw,avx512vl " ) ]
384- #[ cfg_attr( test, assert_instr( vgf2p8affineqb , B = 0 ) ) ]
383+ #[ target_feature( enable = "avx512gfni" ) ]
384+ #[ cfg_attr( test, assert_instr( gf2p8affineqb , B = 0 ) ) ]
385385#[ rustc_legacy_const_generics( 2 ) ]
386386pub unsafe fn _mm_gf2p8affine_epi64_epi8 < const B : i32 > ( x : __m128i , a : __m128i ) -> __m128i {
387387 static_assert_imm8 ! ( B ) ;
@@ -534,7 +534,7 @@ pub unsafe fn _mm512_mask_gf2p8affineinv_epi64_epi8<const B: i32>(
534534///
535535/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_gf2p8affineinv_epi64_epi8)
536536#[ inline]
537- #[ target_feature( enable = "avx512gfni,avx512bw,avx512vl " ) ]
537+ #[ target_feature( enable = "avx512gfni,avx " ) ]
538538#[ cfg_attr( test, assert_instr( vgf2p8affineinvqb, B = 0 ) ) ]
539539#[ rustc_legacy_const_generics( 2 ) ]
540540pub unsafe fn _mm256_gf2p8affineinv_epi64_epi8 < const B : i32 > ( x : __m256i , a : __m256i ) -> __m256i {
@@ -613,8 +613,8 @@ pub unsafe fn _mm256_mask_gf2p8affineinv_epi64_epi8<const B: i32>(
613613///
614614/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_gf2p8affineinv_epi64_epi8)
615615#[ inline]
616- #[ target_feature( enable = "avx512gfni,avx512bw,avx512vl " ) ]
617- #[ cfg_attr( test, assert_instr( vgf2p8affineinvqb , B = 0 ) ) ]
616+ #[ target_feature( enable = "avx512gfni" ) ]
617+ #[ cfg_attr( test, assert_instr( gf2p8affineinvqb , B = 0 ) ) ]
618618#[ rustc_legacy_const_generics( 2 ) ]
619619pub unsafe fn _mm_gf2p8affineinv_epi64_epi8 < const B : i32 > ( x : __m128i , a : __m128i ) -> __m128i {
620620 static_assert_imm8 ! ( B ) ;
0 commit comments