about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThe Atelier <workingjubilee@gmail.com>2022-12-03 18:40:07 -0800
committerThe Atelier <workingjubilee@gmail.com>2022-12-03 18:41:43 -0800
commitda3bd6d3a04f84ebc7fc6314f2e1f8a74e379018 (patch)
treeacb22bd7c8041f27df3b5a6f775408914f531de2
parent64247a327d30a2d5fe7ad3d98f527bff1cc8fb85 (diff)
downloadrust-da3bd6d3a04f84ebc7fc6314f2e1f8a74e379018.tar.gz
rust-da3bd6d3a04f84ebc7fc6314f2e1f8a74e379018.zip
Update dot_product example import
-rw-r--r--crates/core_simd/examples/dot_product.rs2
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*