Skip to content

Commit

Permalink
fix clippy warning (only appears in CI??)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjjfvi committed Apr 10, 2024
1 parent 3eeb2dd commit 1b4e7a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/run/parallel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl<'h, M: Mode> Net<'h, M> {
}

// Initialize global objects
let cores = thread::available_parallelism().unwrap().get() as usize;
let cores = thread::available_parallelism().unwrap().get();
let tlog2 = cores.ilog2() as usize;
let tids = 1 << tlog2;
let delta = AtomicRewrites::default(); // delta rewrite counter
Expand Down

0 comments on commit 1b4e7a1

Please sign in to comment.