#[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: usize

All 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: usize

Implementations

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.

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

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.