pub struct HcMix {
pub post: CudaSlice<f32>,
pub comb: CudaSlice<f32>,
}Expand description
The per-token post gates and combination matrix a site’s hc_pre produced, held for that
site’s hc_post. post is [tokens, streams], comb is [tokens, streams, streams].
Fields§
§post: CudaSlice<f32>§comb: CudaSlice<f32>Auto Trait Implementations§
impl Freeze for HcMix
impl RefUnwindSafe for HcMix
impl Send for HcMix
impl Sync for HcMix
impl Unpin for HcMix
impl UnsafeUnpin for HcMix
impl UnwindSafe for HcMix
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