pub struct ParallelConfig {
pub min_speedup_threshold: f64,
pub max_functions: usize,
pub allow_speculative: bool,
pub hardware_threads: u32,
}Expand description
Configuration for the parallelism pass.
Fields§
§min_speedup_threshold: f64Minimum estimated speedup below which a region is not transformed.
max_functions: usizeMaximum number of functions analysed (prevents runaway).
allow_speculative: boolEnable speculative parallelism (may be unsound).
hardware_threads: u32Assumed number of hardware threads for speed-up estimation.
Trait Implementations§
Source§impl Clone for ParallelConfig
impl Clone for ParallelConfig
Source§fn clone(&self) -> ParallelConfig
fn clone(&self) -> ParallelConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParallelConfig
impl Debug for ParallelConfig
Auto Trait Implementations§
impl Freeze for ParallelConfig
impl RefUnwindSafe for ParallelConfig
impl Send for ParallelConfig
impl Sync for ParallelConfig
impl Unpin for ParallelConfig
impl UnsafeUnpin for ParallelConfig
impl UnwindSafe for ParallelConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more