pub struct FFTBasedConvolution<A = Global> { /* private fields */ }Expand description
§Availability
This API is marked as unstable and is only available when the unstable-enable crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.
Implementations§
Source§impl<A> FFTBasedConvolution<A>where
A: Allocator,
impl<A> FFTBasedConvolution<A>where
A: Allocator,
Trait Implementations§
Source§impl<A> Clone for FFTBasedConvolution<A>
impl<A> Clone for FFTBasedConvolution<A>
Source§impl<I, A> ConvolutionAlgorithm<I> for FFTBasedConvolution<A>
impl<I, A> ConvolutionAlgorithm<I> for FFTBasedConvolution<A>
Source§fn compute_convolution<S: RingStore<Type = I>, V1: VectorView<I::Element>, V2: VectorView<I::Element>>(
&self,
lhs: V1,
rhs: V2,
dst: &mut [I::Element],
ring: S,
)
fn compute_convolution<S: RingStore<Type = I>, V1: VectorView<I::Element>, V2: VectorView<I::Element>>( &self, lhs: V1, rhs: V2, dst: &mut [I::Element], ring: S, )
Source§impl<'a, A> From<&'a FFTBasedConvolution<A>> for &'a FFTBasedConvolutionZn<A>where
A: Allocator,
impl<'a, A> From<&'a FFTBasedConvolution<A>> for &'a FFTBasedConvolutionZn<A>where
A: Allocator,
Source§fn from(value: &'a FFTBasedConvolution<A>) -> Self
fn from(value: &'a FFTBasedConvolution<A>) -> Self
Converts to this type from the input type.
Source§impl<'a, A> From<&'a FFTBasedConvolutionZn<A>> for &'a FFTBasedConvolution<A>where
A: Allocator,
impl<'a, A> From<&'a FFTBasedConvolutionZn<A>> for &'a FFTBasedConvolution<A>where
A: Allocator,
Source§fn from(value: &'a FFTBasedConvolutionZn<A>) -> Self
fn from(value: &'a FFTBasedConvolutionZn<A>) -> Self
Converts to this type from the input type.
Source§impl<A> From<FFTBasedConvolution<A>> for FFTBasedConvolutionZn<A>where
A: Allocator,
impl<A> From<FFTBasedConvolution<A>> for FFTBasedConvolutionZn<A>where
A: Allocator,
Source§fn from(value: FFTBasedConvolution<A>) -> Self
fn from(value: FFTBasedConvolution<A>) -> Self
Converts to this type from the input type.
Source§impl<A> From<FFTBasedConvolutionZn<A>> for FFTBasedConvolution<A>where
A: Allocator,
impl<A> From<FFTBasedConvolutionZn<A>> for FFTBasedConvolution<A>where
A: Allocator,
Source§fn from(value: FFTBasedConvolutionZn<A>) -> Self
fn from(value: FFTBasedConvolutionZn<A>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<A = Global> !Freeze for FFTBasedConvolution<A>
impl<A = Global> !RefUnwindSafe for FFTBasedConvolution<A>
impl<A> Send for FFTBasedConvolution<A>where
A: Send,
impl<A = Global> !Sync for FFTBasedConvolution<A>
impl<A> Unpin for FFTBasedConvolution<A>where
A: Unpin,
impl<A> UnwindSafe for FFTBasedConvolution<A>where
A: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more