pub struct MatmulSpec {
pub trans_a: bool,
pub trans_b: bool,
pub alpha: f32,
pub b_rows: Option<usize>,
}Fields§
§trans_a: boolInterpret A as [k, m] instead of [m, k] (used by backward passes: dB = Aᵀ·dY without materializing the transpose).
trans_b: boolInterpret B as [n, k] instead of [k, n].
alpha: f32Scale applied to the product (before bias).
b_rows: Option<usize>Logical row count of each batch element of B, when B is a view over
a larger preallocated buffer (KV cache): only the first b_rows rows
are read, while the batch stride comes from the physical shape.
Trait Implementations§
Source§impl Clone for MatmulSpec
impl Clone for MatmulSpec
Source§fn clone(&self) -> MatmulSpec
fn clone(&self) -> MatmulSpec
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 moreimpl Copy for MatmulSpec
Auto Trait Implementations§
impl Freeze for MatmulSpec
impl RefUnwindSafe for MatmulSpec
impl Send for MatmulSpec
impl Sync for MatmulSpec
impl Unpin for MatmulSpec
impl UnsafeUnpin for MatmulSpec
impl UnwindSafe for MatmulSpec
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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