pub enum DW {
Bf16(*const c_void),
Fp8 {
codes: *const c_void,
scales: *const f32,
sc_cols: i32,
},
}Expand description
Dense-weight pointer for the device-path GEMV wrappers: the bf16 dequant slab, or
the as-stored FP8 pair when the dense arm is on. Copy of raw pointers only — built
per call from the owning slabs via [dwsel].
Variants§
Trait Implementations§
Auto Trait Implementations§
impl !Send for DW
impl !Sync for DW
impl Freeze for DW
impl RefUnwindSafe for DW
impl Unpin for DW
impl UnsafeUnpin for DW
impl UnwindSafe for DW
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