halo2_proofs/
multicore.rs

1//! An interface for dealing with the kinds of parallel computations involved in
2//! `halo2`. It's currently just a (very!) thin wrapper around [`rayon`] but may
3//! be extended in the future to allow for various parallelism strategies.
4
5pub use rayon::{current_num_threads, scope, Scope};