From 0ac3785f906cd2668dbae6f63447a7069aeb1ea8 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Fri, 20 Oct 2023 00:11:06 +0800 Subject: [PATCH] feat: fix something --- src/simd.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/simd.rs b/src/simd.rs index f3a4fda..3d95852 100644 --- a/src/simd.rs +++ b/src/simd.rs @@ -71,7 +71,7 @@ macro_rules! impl_vector4 { #[cfg(feature = "simd")] #[inline(always)] fn shuffle_left_1(self) -> Self { - use simdint::simd_shuffle4; + use crate::simdint::simd_shuffle4; unsafe { simd_shuffle4(self, self, [1, 2, 3, 0]) } } @@ -84,7 +84,7 @@ macro_rules! impl_vector4 { #[cfg(feature = "simd")] #[inline(always)] fn shuffle_left_2(self) -> Self { - use simdint::simd_shuffle4; + use crate::simdint::simd_shuffle4; unsafe { simd_shuffle4(self, self, [2, 3, 0, 1]) } } @@ -97,7 +97,7 @@ macro_rules! impl_vector4 { #[cfg(feature = "simd")] #[inline(always)] fn shuffle_left_3(self) -> Self { - use simdint::simd_shuffle4; + use crate::simdint::simd_shuffle4; unsafe { simd_shuffle4(self, self, [3, 0, 1, 2]) } }