pub struct Q8KActivations {
pub q: Vec<i8>,
pub d: Vec<f32>,
pub bsums: Vec<i16>,
}Expand description
ggml block_q8_K activations for K-quant int-dot (Q4_K/Q5_K/Q6_K).
Super-blocks of 256 elements with 16-wide bsums for the min term.
Fields§
§q: Vec<i8>§d: Vec<f32>§bsums: Vec<i16>Per 16-wide group sums of q, n_blocks * 16 long.
Implementations§
Trait Implementations§
Source§impl Clone for Q8KActivations
impl Clone for Q8KActivations
Source§fn clone(&self) -> Q8KActivations
fn clone(&self) -> Q8KActivations
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 moreAuto Trait Implementations§
impl Freeze for Q8KActivations
impl RefUnwindSafe for Q8KActivations
impl Send for Q8KActivations
impl Sync for Q8KActivations
impl Unpin for Q8KActivations
impl UnsafeUnpin for Q8KActivations
impl UnwindSafe for Q8KActivations
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