pub struct VectorizationStrategy {
pub parallel_output_vectorization: bool,
}Fields§
§parallel_output_vectorization: boolWhen the vectorization is parallel, enable vectorization of the output so that each
unit can perform N reductions, where N is the output vector_size.
Trait Implementations§
Source§impl Clone for VectorizationStrategy
impl Clone for VectorizationStrategy
Source§fn clone(&self) -> VectorizationStrategy
fn clone(&self) -> VectorizationStrategy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VectorizationStrategy
Auto Trait Implementations§
impl Freeze for VectorizationStrategy
impl RefUnwindSafe for VectorizationStrategy
impl Send for VectorizationStrategy
impl Sync for VectorizationStrategy
impl Unpin for VectorizationStrategy
impl UnsafeUnpin for VectorizationStrategy
impl UnwindSafe for VectorizationStrategy
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