You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: crates/core_simd/src/core_simd_docs.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Instead, they map to a reasonable implementation of the operation for the target
30
30
31
31
Consistency between targets is not compromised to use faster or fewer instructions.
32
32
In some cases, `std::arch` will provide a faster function that has slightly different behavior than the `std::simd` equivalent.
33
-
For example, [`_mm_min_ps`](`core::arch::x86_64::_mm_min_ps`)[^1] can be slightly faster than [`SimdFloat::simd_min`](`num::SimdFloat::simd_min`), but does not conform to the IEEE standard also used by [`f32::min`].
33
+
For example, `_mm_min_ps`[^1] can be slightly faster than [`SimdFloat::simd_min`](`num::SimdFloat::simd_min`), but does not conform to the IEEE standard also used by [`f32::min`].
34
34
When necessary, [`Simd<T, N>`] can be converted to the types provided by `std::arch` to make use of target-specific functions.
35
35
36
36
Many targets simply don't have SIMD, or don't support SIMD for a particular element type.
0 commit comments