Skip to content

Commit c6b3b35

Browse files
committed
Remove link to core::arch::x86_64
1 parent 62030c7 commit c6b3b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core_simd/src/core_simd_docs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Instead, they map to a reasonable implementation of the operation for the target
3030

3131
Consistency between targets is not compromised to use faster or fewer instructions.
3232
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`].
3434
When necessary, [`Simd<T, N>`] can be converted to the types provided by `std::arch` to make use of target-specific functions.
3535

3636
Many targets simply don't have SIMD, or don't support SIMD for a particular element type.

0 commit comments

Comments
 (0)