@@ -209,10 +209,10 @@ pub unsafe fn _mm512_cmpneq_epu64_mask(a: __m512i, b: __m512i) -> __mmask8 {
209
209
simd_bitmask :: < __m512i , _ > ( simd_ne ( a. as_u64x8 ( ) , b. as_u64x8 ( ) ) )
210
210
}
211
211
212
- ///Compare packed unsigned 64-bit integers in a and b for inequality, and store the results in a mask vector k
212
+ /// Compare packed unsigned 64-bit integers in a and b for inequality, and store the results in a mask vector k
213
213
/// using zeromask m (elements are zeroed out when the corresponding mask bit is not set).
214
214
///
215
- /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmpneq_epu64 )
215
+ /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmpneq_epu64_mask )
216
216
#[ inline]
217
217
#[ target_feature( enable = "avx512f" ) ]
218
218
#[ cfg_attr( test, assert_instr( vpcmp) ) ]
@@ -222,7 +222,7 @@ pub unsafe fn _mm512_mask_cmpneq_epu64_mask(m: __mmask8, a: __m512i, b: __m512i)
222
222
223
223
/// Compare packed unsigned 64-bit integers in a and b based on the comparison operand specified by op.
224
224
///
225
- /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmp_epu64 )
225
+ /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmp_epu64_mask )
226
226
#[ inline]
227
227
#[ target_feature( enable = "avx512f" ) ]
228
228
#[ rustc_args_required_const( 2 ) ]
@@ -241,7 +241,7 @@ pub unsafe fn _mm512_cmp_epu64_mask(a: __m512i, b: __m512i, op: _MM_CMPINT_ENUM)
241
241
/// Compare packed unsigned 64-bit integers in a and b based on the comparison operand specified by op,
242
242
/// using zeromask m (elements are zeroed out when the corresponding mask bit is not set).
243
243
///
244
- /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmp_epu64 )
244
+ /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmp_epu64_mask )
245
245
#[ inline]
246
246
#[ target_feature( enable = "avx512f" ) ]
247
247
#[ rustc_args_required_const( 3 ) ]
@@ -389,7 +389,7 @@ pub unsafe fn _mm512_mask_cmpneq_epi64_mask(m: __mmask8, a: __m512i, b: __m512i)
389
389
390
390
/// Compare packed signed 64-bit integers in a and b based on the comparison operand specified by op.
391
391
///
392
- /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmp_epi64 )
392
+ /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmp_epi64_mask )
393
393
#[ inline]
394
394
#[ target_feature( enable = "avx512f" ) ]
395
395
#[ rustc_args_required_const( 2 ) ]
@@ -408,7 +408,7 @@ pub unsafe fn _mm512_cmp_epi64_mask(a: __m512i, b: __m512i, op: _MM_CMPINT_ENUM)
408
408
/// Compare packed signed 64-bit integers in a and b based on the comparison operand specified by op,
409
409
/// using zeromask m (elements are zeroed out when the corresponding mask bit is not set).
410
410
///
411
- /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmp_epi64 )
411
+ /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=727,1063,4909,1062,1062,1063&text=_mm512_mask_cmp_epi64_mask )
412
412
#[ inline]
413
413
#[ target_feature( enable = "avx512f" ) ]
414
414
#[ rustc_args_required_const( 3 ) ]
0 commit comments