@@ -26,7 +26,7 @@ pub unsafe fn _mm512_madd52hi_epu64(a: __m512i, b: __m512i, c: __m512i) -> __m51
26
26
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=3497&avx512techs=AVX512IFMA52)
27
27
#[ inline]
28
28
#[ target_feature( enable = "avx512ifma" ) ]
29
- #[ cfg_attr( test, assert_instr( vpmadd52huq ) ) ]
29
+ #[ cfg_attr( test, assert_instr( vpmadd52luq ) ) ]
30
30
pub unsafe fn _mm512_madd52lo_epu64 ( a : __m512i , b : __m512i , c : __m512i ) -> __m512i {
31
31
vpmadd52luq_512 ( a, b, c)
32
32
}
@@ -54,7 +54,7 @@ pub unsafe fn _mm256_madd52hi_epu64(a: __m256i, b: __m256i, c: __m256i) -> __m25
54
54
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=vpmadd52&avx512techs=AVX512IFMA52,AVX512VL&expand=3494)
55
55
#[ inline]
56
56
#[ target_feature( enable = "avx512ifma,avx512vl" ) ]
57
- #[ cfg_attr( test, assert_instr( vpmadd52huq ) ) ]
57
+ #[ cfg_attr( test, assert_instr( vpmadd52luq ) ) ]
58
58
pub unsafe fn _mm256_madd52lo_epu64 ( a : __m256i , b : __m256i , c : __m256i ) -> __m256i {
59
59
vpmadd52luq_256 ( a, b, c)
60
60
}
@@ -82,7 +82,7 @@ pub unsafe fn _mm_madd52hi_epu64(a: __m128i, b: __m128i, c: __m128i) -> __m128i
82
82
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=3488,3491&text=vpmadd52&avx512techs=AVX512IFMA52,AVX512VL)
83
83
#[ inline]
84
84
#[ target_feature( enable = "avx512ifma,avx512vl" ) ]
85
- #[ cfg_attr( test, assert_instr( vpmadd52huq ) ) ]
85
+ #[ cfg_attr( test, assert_instr( vpmadd52luq ) ) ]
86
86
pub unsafe fn _mm_madd52lo_epu64 ( a : __m128i , b : __m128i , c : __m128i ) -> __m128i {
87
87
vpmadd52luq_128 ( a, b, c)
88
88
}
0 commit comments