Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ serde_derive = "1.0"
serde_json = "1.0"
sha2 = "0.9"
unchecked_unwrap = "3.0"
packed_simd_2 = "0.3"
packed_simd = "0.3"
jemallocator = { version = "0.3.2", optional = true }
log = "0.4"
indicatif = "0.16"
Expand Down
2 changes: 1 addition & 1 deletion src/lf1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::{
use itertools::Itertools;
use m4ri_rust::friendly::BinMatrix;
use m4ri_rust::friendly::BinVector;
use packed_simd_2::i64x4;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay we should instead just replace this by std::simd::i64x4

use packed_simd::i64x4;
use rayon::prelude::*;
use std::{
ops,
Expand Down