Skip to content

Commit 7538c0f

Browse files
author
Daniel Smith
committed
Fix comments
1 parent 2957e2e commit 7538c0f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

crates/core_arch/src/x86/avx512f.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,10 @@ pub unsafe fn _mm512_cmpneq_epu64_mask(a: __m512i, b: __m512i) -> __mmask8 {
209209
simd_bitmask::<__m512i, _>(simd_ne(a.as_u64x8(), b.as_u64x8()))
210210
}
211211

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
213213
/// using zeromask m (elements are zeroed out when the corresponding mask bit is not set).
214214
///
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)
216216
#[inline]
217217
#[target_feature(enable = "avx512f")]
218218
#[cfg_attr(test, assert_instr(vpcmp))]
@@ -222,7 +222,7 @@ pub unsafe fn _mm512_mask_cmpneq_epu64_mask(m: __mmask8, a: __m512i, b: __m512i)
222222

223223
/// Compare packed unsigned 64-bit integers in a and b based on the comparison operand specified by op.
224224
///
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)
226226
#[inline]
227227
#[target_feature(enable = "avx512f")]
228228
#[rustc_args_required_const(2)]
@@ -241,7 +241,7 @@ pub unsafe fn _mm512_cmp_epu64_mask(a: __m512i, b: __m512i, op: _MM_CMPINT_ENUM)
241241
/// Compare packed unsigned 64-bit integers in a and b based on the comparison operand specified by op,
242242
/// using zeromask m (elements are zeroed out when the corresponding mask bit is not set).
243243
///
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)
245245
#[inline]
246246
#[target_feature(enable = "avx512f")]
247247
#[rustc_args_required_const(3)]
@@ -389,7 +389,7 @@ pub unsafe fn _mm512_mask_cmpneq_epi64_mask(m: __mmask8, a: __m512i, b: __m512i)
389389

390390
/// Compare packed signed 64-bit integers in a and b based on the comparison operand specified by op.
391391
///
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)
393393
#[inline]
394394
#[target_feature(enable = "avx512f")]
395395
#[rustc_args_required_const(2)]
@@ -408,7 +408,7 @@ pub unsafe fn _mm512_cmp_epi64_mask(a: __m512i, b: __m512i, op: _MM_CMPINT_ENUM)
408408
/// Compare packed signed 64-bit integers in a and b based on the comparison operand specified by op,
409409
/// using zeromask m (elements are zeroed out when the corresponding mask bit is not set).
410410
///
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)
412412
#[inline]
413413
#[target_feature(enable = "avx512f")]
414414
#[rustc_args_required_const(3)]

0 commit comments

Comments
 (0)