pub struct FlashAttention {
pub softmax_scale: f32,
pub window_size_left: Option<usize>,
pub window_size_right: Option<usize>,
pub alibi_slopes: Option<Tensor>,
}
Fields§
§softmax_scale: f32
§window_size_left: Option<usize>
§window_size_right: Option<usize>
§alibi_slopes: Option<Tensor>
Implementations§
Source§impl FlashAttention
impl FlashAttention
pub fn new( softmax_scale: f32, window_size_left: Option<usize>, window_size_right: Option<usize>, alibi_slopes: Option<Tensor>, ) -> Self
pub fn softmax_scale(&self) -> f32
pub fn window_size_left(&self) -> Option<usize>
pub fn window_size_right(&self) -> Option<usize>
pub fn alibi_slopes(&self) -> Option<&Tensor>
Trait Implementations§
Source§impl Clone for FlashAttention
impl Clone for FlashAttention
Source§fn clone(&self) -> FlashAttention
fn clone(&self) -> FlashAttention
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FlashAttention
impl Debug for FlashAttention
Source§impl PartialEq for FlashAttention
impl PartialEq for FlashAttention
Source§impl Primitive for FlashAttention
impl Primitive for FlashAttention
fn clone_boxed(&self) -> Box<dyn Primitive>
fn as_any(&self) -> &dyn Any
fn dot_label(&self) -> String
fn jvp( &self, _output: &Tensor, _primals: &[Tensor], tangents: &[Tensor], ) -> Tensor
fn vjp( &self, _output: &Tensor, _primals: &[Tensor], cotangent: &Tensor, ) -> Vec<Tensor>
impl StructuralPartialEq for FlashAttention
Auto Trait Implementations§
impl Freeze for FlashAttention
impl !RefUnwindSafe for FlashAttention
impl !Send for FlashAttention
impl !Sync for FlashAttention
impl Unpin for FlashAttention
impl !UnwindSafe for FlashAttention
Blanket Implementations§
Source§impl<T, M> ApplyModule<M> for Twhere
M: Module<Input = T>,
impl<T, M> ApplyModule<M> for Twhere
M: Module<Input = T>,
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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