diff --git a/fearless_simd/README.md b/fearless_simd/README.md index f6d8e2cc..f07d3038 100644 --- a/fearless_simd/README.md +++ b/fearless_simd/README.md @@ -206,7 +206,7 @@ Note that later extensions can be beneficial even if you are only using 128-bit AVX2 and AVX-512 provide more efficient instructions for some operations, and AVX-512 also more than doubles the number of vector registers of all sizes. -You can also [disable certain instruction sets for select functions](https://github.com/linebender/fearless_simd/blob/main/fearless_simd/examples/sigmoid.rs) +You can also [disable certain instruction sets for select functions](https://github.com/linebender/fearless_simd/blob/main/fearless_simd/examples/disable_avx2_for_one_function.rs) without disabling them globally. ## Feature Flags diff --git a/fearless_simd/src/lib.rs b/fearless_simd/src/lib.rs index eba4ca1d..9cc4fe57 100644 --- a/fearless_simd/src/lib.rs +++ b/fearless_simd/src/lib.rs @@ -173,7 +173,7 @@ //! AVX2 and AVX-512 provide more efficient instructions for some operations, //! and AVX-512 also more than doubles the number of vector registers of all sizes. //! -//! You can also [disable certain instruction sets for select functions](https://github.com/linebender/fearless_simd/blob/main/fearless_simd/examples/sigmoid.rs) +//! You can also [disable certain instruction sets for select functions](https://github.com/linebender/fearless_simd/blob/main/fearless_simd/examples/disable_avx2_for_one_function.rs) //! without disabling them globally. //! //! # Feature Flags