pub struct KvCacheState {
pub past_len: usize,
pub layers_k: Vec<Vec<f32>>,
pub layers_v: Vec<Vec<f32>>,
}Expand description
Layer-wise past K/V tensors in row-major [past_len * kv_dim] layout per layer.
Fields§
§past_len: usize§layers_k: Vec<Vec<f32>>§layers_v: Vec<Vec<f32>>Implementations§
Source§impl LayerKvCache
impl LayerKvCache
pub fn from_layer_outputs( num_layers: usize, batch: usize, past_seq: usize, kv_dim: usize, outputs: &[Vec<f32>], ) -> Result<LayerKvCache, String>
Trait Implementations§
Source§impl Clone for LayerKvCache
impl Clone for LayerKvCache
Source§fn clone(&self) -> LayerKvCache
fn clone(&self) -> LayerKvCache
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 LayerKvCache
impl RefUnwindSafe for LayerKvCache
impl Send for LayerKvCache
impl Sync for LayerKvCache
impl Unpin for LayerKvCache
impl UnsafeUnpin for LayerKvCache
impl UnwindSafe for LayerKvCache
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