@@ -50,11 +50,11 @@ pub unsafe fn _mm256_cvtph_ps(a: __m128i) -> __m256 {
5050///
5151/// Rounding is done according to the `imm_rounding` parameter, which can be one of:
5252///
53- /// * `_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC`: round to nearest and suppress exceptions,
54- /// * `_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC`: round down and suppress exceptions,
55- /// * `_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC`: round up and suppress exceptions,
56- /// * `_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC`: truncate and suppress exceptions,
57- /// * `_MM_FROUND_CUR_DIRECTION`: use `MXCSR.RC` - see [`_MM_SET_ROUNDING_MODE`].
53+ /// * [ `_MM_FROUND_TO_NEAREST_INT`] | [` _MM_FROUND_NO_EXC`] : round to nearest and suppress exceptions
54+ /// * [ `_MM_FROUND_TO_NEG_INF`] | [` _MM_FROUND_NO_EXC`] : round down and suppress exceptions
55+ /// * [ `_MM_FROUND_TO_POS_INF`] | [` _MM_FROUND_NO_EXC`] : round up and suppress exceptions
56+ /// * [ `_MM_FROUND_TO_ZERO`] | [` _MM_FROUND_NO_EXC`] : truncate and suppress exceptions
57+ /// * [ `_MM_FROUND_CUR_DIRECTION`] : use `MXCSR.RC` - see [`_MM_SET_ROUNDING_MODE`]
5858///
5959/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_cvtps_ph)
6060#[ inline]
@@ -74,11 +74,11 @@ pub unsafe fn _mm_cvtps_ph<const IMM_ROUNDING: i32>(a: __m128) -> __m128i {
7474///
7575/// Rounding is done according to the `imm_rounding` parameter, which can be one of:
7676///
77- /// * `_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC`: round to nearest and suppress exceptions,
78- /// * `_MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC`: round down and suppress exceptions,
79- /// * `_MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC`: round up and suppress exceptions,
80- /// * `_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC`: truncate and suppress exceptions,
81- /// * `_MM_FROUND_CUR_DIRECTION`: use `MXCSR.RC` - see [`_MM_SET_ROUNDING_MODE`].
77+ /// * [ `_MM_FROUND_TO_NEAREST_INT`] | [` _MM_FROUND_NO_EXC`] : round to nearest and suppress exceptions
78+ /// * [ `_MM_FROUND_TO_NEG_INF`] | [` _MM_FROUND_NO_EXC`] : round down and suppress exceptions
79+ /// * [ `_MM_FROUND_TO_POS_INF`] | [` _MM_FROUND_NO_EXC`] : round up and suppress exceptions
80+ /// * [ `_MM_FROUND_TO_ZERO`] | [` _MM_FROUND_NO_EXC`] : truncate and suppress exceptions
81+ /// * [ `_MM_FROUND_CUR_DIRECTION`] : use `MXCSR.RC` - see [`_MM_SET_ROUNDING_MODE`]
8282///
8383/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_cvtps_ph)
8484#[ inline]
0 commit comments