Struct basic_dsp::MultiCoreSettings [−][src]
#[repr(C)]pub struct MultiCoreSettings { pub core_limit: usize, pub med_dual_core_threshold: usize, pub med_multi_core_threshold: usize, pub large_dual_core_threshold: usize, pub large_multi_core_threshold: usize, }
Expand description
Holds parameters which specify how multiple cores are used to execute an operation.
Fields
core_limit: usizeAll operations will be limited to not create more threads than specified here
med_dual_core_threshold: usizemed_multi_core_threshold: usizelarge_dual_core_threshold: usizelarge_multi_core_threshold: usizeImplementations
Creates multi core settings with default values
Creates multi core settings so that no thread will be spawned.
Creates multi core so that threads will be spawned if this appears to be beneficial.
Creates multi core settings with the given values.
If core_limit > 1 then the first time this function is executed a calibration run
will be performed which determines the details for the multi threading strategy. This
run takes between 200ms and 500ms.
pub fn with_thresholds(
core_limit: usize,
med_dual_core_threshold: usize,
med_multi_core_threshold: usize,
large_dual_core_threshold: usize,
large_multi_core_threshold: usize
) -> MultiCoreSettings[src]
pub fn with_thresholds(
core_limit: usize,
med_dual_core_threshold: usize,
med_multi_core_threshold: usize,
large_dual_core_threshold: usize,
large_multi_core_threshold: usize
) -> MultiCoreSettings[src]Creates multi core settings with explicit thresholds.
The arguments allow to specify the number of cores which are used at maximum and as
well as starting from which slice size the lib will start to use two or all cores.
med denotes operations of medium complexity, e.g. such as log and sin.
large denotes operations like convolution and interpolation.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MultiCoreSettingsimpl Send for MultiCoreSettingsimpl Sync for MultiCoreSettingsimpl Unpin for MultiCoreSettingsimpl UnwindSafe for MultiCoreSettingsBlanket Implementations
Mutably borrows from an owned value. Read more