Skip to content

Commit

Permalink
feat: implement piop part
Browse files Browse the repository at this point in the history
  • Loading branch information
han0110 committed Jan 10, 2024
1 parent 3550ab0 commit 92cd127
Show file tree
Hide file tree
Showing 14 changed files with 1,970 additions and 38 deletions.
2 changes: 1 addition & 1 deletion halo2_proofs/src/arithmetic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ pub fn parallelize<T: Send, F: Fn(&mut [T], usize) + Send + Sync + Clone>(v: &mu
});
}

fn log2_floor(num: usize) -> u32 {
pub(crate) fn log2_floor(num: usize) -> u32 {
assert!(num > 0);

let mut pow = 0;
Expand Down
Loading

0 comments on commit 92cd127

Please sign in to comment.