Glm5NextDsaKernels

Struct Glm5NextDsaKernels 

Source
pub struct Glm5NextDsaKernels {
    pub kpool_compress: KernelHandle,
    pub compact_pools: KernelHandle,
    pub index_scores: KernelHandle,
    pub topk_pools: KernelHandle,
    pub expand_selection: KernelHandle,
    pub k_norm: KernelHandle,
    pub write_geom: KernelHandle,
    pub indexer_store: KernelHandle,
    pub topk_to_mask: KernelHandle,
    pub mla_masked_attn: KernelHandle,
}
Expand description

Every kernel the DSA path launches.

Resolved with kernel() (not try_kernel): a missing DSA entry point is a hard error, never a silent fallback onto a dense-attention path. A sparse layer that quietly runs dense is a correctness bug that looks like a performance bug.

Fields§

§kpool_compress: KernelHandle§compact_pools: KernelHandle§index_scores: KernelHandle§topk_pools: KernelHandle§expand_selection: KernelHandle§k_norm: KernelHandle

indexer.k_norm, which is an nn.LayerNorm with a bias — not an RMSNorm.

🪤 Do NOT reach for an RMSNorm kernel here. A .weight-only norm silently drops both the mean subtraction and the bias, and nothing about the shapes says so: k_norm.weight and k_norm.bias are both [index_head_dim]. The binder already lists the bias as REQUIRED for exactly this reason.

✅ No new kernel needed — common/nllb_encoder.cu already carries an in-place BF16 LayerNorm taking (x, weight, bias, rows, dim, eps), and common/ is merged into every target. Found by grepping kernels/ before scoping a build, per the campaign’s standing rule; this is the fifth thing that turned out to already exist.

§write_geom: KernelHandle

Derives this step’s selector geometry ON DEVICE from seq_len, so a captured graph replays over the live context instead of the capture-time one. try_kernel — without it the layer keeps the host-scalar path and graphs stay off.

§indexer_store: KernelHandle

Places the staged indexer row at a DEVICE-side position and marks it valid. The host k_normed.offset(pos * D * 2) it replaces was the other frozen scalar.

§topk_to_mask: KernelHandle

🔬 ORACLE ONLY — see MASKED_ATTN_MAX_KEYS.

§mla_masked_attn: KernelHandle

🔬 ORACLE ONLY — see MASKED_ATTN_MAX_KEYS.

Implementations§

Trait Implementations§

Source§

impl Clone for Glm5NextDsaKernels

Source§

fn clone(&self) -> Glm5NextDsaKernels

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Glm5NextDsaKernels

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more