pub struct KvBlock { /* private fields */ }Expand description
A single page/block in the KV-cache.
Pre-allocated at construction with capacity for [BLOCK_TOKEN_COUNT]
tokens. Data is stored as a flat Vec<f64> of shape
[BLOCK_TOKEN_COUNT, dim], with a used cursor tracking how many
token slots have been written.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KvBlock
impl RefUnwindSafe for KvBlock
impl Send for KvBlock
impl Sync for KvBlock
impl Unpin for KvBlock
impl UnsafeUnpin for KvBlock
impl UnwindSafe for KvBlock
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