Struct TransformerDecoderLayerAutoregressiveCache
pub struct TransformerDecoderLayerAutoregressiveCache<B>where
B: Backend,{
pub cross_attn: MhaCache<B>,
pub self_attn: MhaCache<B>,
pub pwff: TensorCache<B, 3>,
pub norm_1: TensorCache<B, 3>,
pub norm_2: TensorCache<B, 3>,
pub norm_3: TensorCache<B, 3>,
}Expand description
Autoregressive cache for a single Transformer Decoder Layer.
Fields§
§cross_attn: MhaCache<B>Cross-attention cache.
self_attn: MhaCache<B>Self-attention cache.
pwff: TensorCache<B, 3>Position-wise feed-forward cache.
norm_1: TensorCache<B, 3>First layer norm cache.
norm_2: TensorCache<B, 3>Second layer norm cache.
norm_3: TensorCache<B, 3>Third layer norm cache.
Implementations§
§impl<B> TransformerDecoderLayerAutoregressiveCache<B>where
B: Backend,
impl<B> TransformerDecoderLayerAutoregressiveCache<B>where
B: Backend,
pub fn empty() -> TransformerDecoderLayerAutoregressiveCache<B>
pub fn empty() -> TransformerDecoderLayerAutoregressiveCache<B>
Create an empty cache.
Auto Trait Implementations§
impl<B> Freeze for TransformerDecoderLayerAutoregressiveCache<B>where
<B as BackendTypes>::FloatTensorPrimitive: Freeze,
<B as BackendTypes>::QuantizedTensorPrimitive: Freeze,
impl<B> RefUnwindSafe for TransformerDecoderLayerAutoregressiveCache<B>where
<B as BackendTypes>::FloatTensorPrimitive: RefUnwindSafe,
<B as BackendTypes>::QuantizedTensorPrimitive: RefUnwindSafe,
impl<B> Send for TransformerDecoderLayerAutoregressiveCache<B>
impl<B> Sync for TransformerDecoderLayerAutoregressiveCache<B>
impl<B> Unpin for TransformerDecoderLayerAutoregressiveCache<B>where
<B as BackendTypes>::FloatTensorPrimitive: Unpin,
<B as BackendTypes>::QuantizedTensorPrimitive: Unpin,
impl<B> UnwindSafe for TransformerDecoderLayerAutoregressiveCache<B>where
<B as BackendTypes>::FloatTensorPrimitive: UnwindSafe,
<B as BackendTypes>::QuantizedTensorPrimitive: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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