@@ -50,11 +50,11 @@ pub unsafe fn _mm256_cvtph_ps(a: __m128i) -> __m256 {
50
50
///
51
51
/// Rounding is done according to the `imm_rounding` parameter, which can be one of:
52
52
///
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`]
58
58
///
59
59
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_cvtps_ph)
60
60
#[ inline]
@@ -74,11 +74,11 @@ pub unsafe fn _mm_cvtps_ph<const IMM_ROUNDING: i32>(a: __m128) -> __m128i {
74
74
///
75
75
/// Rounding is done according to the `imm_rounding` parameter, which can be one of:
76
76
///
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`]
82
82
///
83
83
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm256_cvtps_ph)
84
84
#[ inline]
0 commit comments