Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fixed error in SIMD comparisons. (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao authored Aug 21, 2021
1 parent f980117 commit 4d227fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,4 +306,4 @@ jobs:
export CARGO_HOME="/github/home/.cargo"
export CARGO_TARGET_DIR="/github/home/target"
# no need to run over all features: simd only affects the core
cargo test --no-default-features --features simd --lib
cargo test --no-default-features --features compute,simd --lib
2 changes: 1 addition & 1 deletion src/compute/comparison/simd/packed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ macro_rules! simd8 {
impl Simd8Lanes<$type> for $md {
#[inline]
fn from_chunk(v: &[$type]) -> Self {
<$md>::from_slice_aligned(v)
<$md>::from_slice_unaligned(v)
}

#[inline]
Expand Down

0 comments on commit 4d227fa

Please sign in to comment.