Skip to content

Commit

Permalink
chore: avx512 acceleration
Browse files Browse the repository at this point in the history
  • Loading branch information
ibmp33 committed Dec 17, 2023
1 parent 5452271 commit 8259aad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starky/src/linearhash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ impl LinearHash {

let flatvals_1: Vec<FGL> = [flatvals.clone(), flatvals.clone()].concat();

let test = self.hash(&flatvals_1, batch_size).unwrap()[0];
Ok(test)
let hash_result = self.hash(&flatvals_1, batch_size).unwrap()[0];
Ok(hash_result)
}

#[cfg(all(
Expand Down

0 comments on commit 8259aad

Please sign in to comment.