Glm5NextMhcKernels

Struct Glm5NextMhcKernels 

Source
pub struct Glm5NextMhcKernels {
    pub hc_expand: KernelHandle,
    pub hc_pre: KernelHandle,
    pub hc_mix: KernelHandle,
    pub hc_mix_bf16: KernelHandle,
    pub hc_finish: KernelHandle,
    pub hc_post: KernelHandle,
    pub hc_head: KernelHandle,
}
Expand description

Every kernel GLM-5.3’s hyper-connection needs, all from the single module glm5next_mhc.

The point of this struct is target independence: a GLM kernel target must not have to carry the DeepSeek-V4 hyper_connection module to resolve half of its own mHC. Copy so all 45 layers can share one resolution — these are opaque handles, not state.

Fields§

§hc_expand: KernelHandle

Broadcast the embedding into the hc_mult streams. First text layer only.

🪤 This is an architecture-neutral broadcast that Atlas already had — and GLM still needs its own, because hyper_connection::hc_expand lives in the DeepSeek-V4 target directory. A kernel target merges common/ plus its OWN model dir and cannot reach into another target’s, so for the GLM target that module does not exist. Resolving it would fail at first construction, not fall back.

§hc_pre: KernelHandle

The FUSED single-block hc_pre. Still resolved, and still the oracle examples/glm5next_hc_split_gate.rs gates the split pair against — but the serve path goes through hc_mix + hc_finish, which are bit-identical and ~mix_hc times wider.

§hc_mix: KernelHandle

One block per mixing row: grid (T, mix_hc).

§hc_mix_bf16: KernelHandle

Same kernel reading hc_fn at the width the checkpoint stores it (BF16). Bit-identical — widening BF16 to F32 is lossless, so it multiplies the same floats. try_kernel; selected per site by Glm5NextMhcSiteWeights::hc_fn_bf16.

§hc_finish: KernelHandle

Split + Sinkhorn + collapse, reading the mixes from global.

§hc_post: KernelHandle§hc_head: KernelHandle

Implementations§

Source§

impl Glm5NextMhcKernels

Source

pub fn resolve(gpu: &dyn GpuBackend) -> Result<Self>

Resolve all six. kernel() (not try_kernel) — a missing mHC kernel is a hard error, never a silent fallback onto the DeepSeek variant.

Trait Implementations§

Source§

impl Clone for Glm5NextMhcKernels

Source§

fn clone(&self) -> Glm5NextMhcKernels

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 Glm5NextMhcKernels

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