Skip to content

Commit

Permalink
Fix BGMW with 2 cores benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtiomTr committed Jun 3, 2024
1 parent 9a3eda1 commit 9f7b3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kzg/src/msm/bgmw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ impl<

let pool = da_pool();
let ncpus = pool.max_count();
if npoints > 32 && ncpus > 2 {
if npoints >= 32 && ncpus >= 2 {
BgmwWindow::Parallel(breakdown(default_window, ncpus))
} else {
BgmwWindow::Sync(default_window)
Expand Down

0 comments on commit 9f7b3af

Please sign in to comment.