pub struct WeightStore(pub HashMap<String, Vec<f32>>);Tuple Fields§
§0: HashMap<String, Vec<f32>>Implementations§
Source§impl WeightStore
impl WeightStore
pub fn from_twiddles(twiddles: &[f32], n_fft: usize) -> Self
pub fn from_twiddles_dir( twiddles: &[f32], n_fft: usize, dir: TransformDir, ) -> Self
pub fn from_twiddles_set( twiddles: &[f32], n_fft: usize, set: TwiddleSet, ) -> Self
pub fn to_twiddles(&self, n_fft: usize) -> Result<Vec<f32>>
pub fn to_twiddles_dir( &self, n_fft: usize, dir: TransformDir, ) -> Result<Vec<f32>>
pub fn to_twiddles_set(&self, n_fft: usize, set: TwiddleSet) -> Result<Vec<f32>>
pub fn merge(&self, other: &Self) -> Self
pub fn apply(&self, exec: &mut CompiledGraph)
Sourcepub fn apply_butterfly(
&self,
exec: &mut CompiledGraph,
_batch: usize,
_n_fft: usize,
)
pub fn apply_butterfly( &self, exec: &mut CompiledGraph, _batch: usize, _n_fft: usize, )
Bind twiddles for a compiled butterfly graph.
Sourcepub fn apply_butterfly_for_gates(
&self,
exec: &mut CompiledGraph,
n_fft: usize,
gates: &[i8],
)
pub fn apply_butterfly_for_gates( &self, exec: &mut CompiledGraph, n_fft: usize, gates: &[i8], )
Bind twiddles only for non-skip ternary butterflies present in a pruned graph.
Trait Implementations§
Source§impl Clone for WeightStore
impl Clone for WeightStore
Source§fn clone(&self) -> WeightStore
fn clone(&self) -> WeightStore
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 moreSource§impl Debug for WeightStore
impl Debug for WeightStore
Source§impl Default for WeightStore
impl Default for WeightStore
Source§fn default() -> WeightStore
fn default() -> WeightStore
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WeightStore
impl RefUnwindSafe for WeightStore
impl Send for WeightStore
impl Sync for WeightStore
impl Unpin for WeightStore
impl UnsafeUnpin for WeightStore
impl UnwindSafe for WeightStore
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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