diff options
| author | The Atelier <workingjubilee@gmail.com> | 2022-12-03 18:40:07 -0800 |
|---|---|---|
| committer | The Atelier <workingjubilee@gmail.com> | 2022-12-03 18:41:43 -0800 |
| commit | da3bd6d3a04f84ebc7fc6314f2e1f8a74e379018 (patch) | |
| tree | acb22bd7c8041f27df3b5a6f775408914f531de2 | |
| parent | 64247a327d30a2d5fe7ad3d98f527bff1cc8fb85 (diff) | |
| download | rust-da3bd6d3a04f84ebc7fc6314f2e1f8a74e379018.tar.gz rust-da3bd6d3a04f84ebc7fc6314f2e1f8a74e379018.zip | |
Update dot_product example import
| -rw-r--r-- | crates/core_simd/examples/dot_product.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/examples/dot_product.rs b/crates/core_simd/examples/dot_product.rs index 936741a2ceb..391f08f55a0 100644 --- a/crates/core_simd/examples/dot_product.rs +++ b/crates/core_simd/examples/dot_product.rs @@ -6,7 +6,7 @@ #![feature(slice_as_chunks)] // Add these imports to use the stdsimd library #![feature(portable_simd)] -use core_simd::*; +use core_simd::simd::*; // This is your barebones dot product implementation: // Take 2 vectors, multiply them element wise and *then* |
