Skip to content

Commit 93851a3

Browse files
silver-ymzAmanieu
authored andcommitted
typo: invalid comments for _mm512_setzero_ps
Signed-off-by: Mingzhuo Yin <yinmingzhuo@gmail.com>
1 parent d8f9120 commit 93851a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/core_arch/src/x86/avx512f.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15950,7 +15950,7 @@ pub unsafe fn _mm512_setzero_pd() -> __m512d {
1595015950
mem::zeroed()
1595115951
}
1595215952

15953-
/// Returns vector of type `__m512d` with all elements set to zero.
15953+
/// Returns vector of type `__m512` with all elements set to zero.
1595415954
///
1595515955
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm512_setzero_ps&expand=5021)
1595615956
#[inline]
@@ -15962,7 +15962,7 @@ pub unsafe fn _mm512_setzero_ps() -> __m512 {
1596215962
mem::zeroed()
1596315963
}
1596415964

15965-
/// Return vector of type __m512 with all elements set to zero.
15965+
/// Return vector of type `__m512` with all elements set to zero.
1596615966
///
1596715967
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm512_setzero&expand=5014)
1596815968
#[inline]
@@ -15986,7 +15986,7 @@ pub unsafe fn _mm512_setzero_si512() -> __m512i {
1598615986
mem::zeroed()
1598715987
}
1598815988

15989-
/// Return vector of type __m512i with all elements set to zero.
15989+
/// Return vector of type `__m512i` with all elements set to zero.
1599015990
///
1599115991
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm512_setzero_epi32&expand=5015)
1599215992
#[inline]

0 commit comments

Comments
 (0)