Qwen35ForwardConfig

Struct Qwen35ForwardConfig 

Source
pub struct Qwen35ForwardConfig {
Show 16 fields pub hidden: u32, pub intermediate: u32, pub num_layers: u32, pub vocab: u32, pub group_size: u32, pub rms_eps: f32, pub num_heads: u32, pub num_kv_heads: u32, pub head_dim: u32, pub rope_theta: f32, pub rotary_dim: u32, pub num_k_heads_lin: u32, pub num_v_heads_lin: u32, pub k_head_dim_lin: u32, pub v_head_dim_lin: u32, pub conv_kernel_size: u32,
}
Expand description

Compile-time-fixed dimensions for a Qwen3.5 checkpoint. Populate from the model’s config.json (text_config) at startup.

Fields§

§hidden: u32§intermediate: u32§num_layers: u32§vocab: u32§group_size: u32§rms_eps: f32§num_heads: u32§num_kv_heads: u32§head_dim: u32§rope_theta: f32§rotary_dim: u32

head_dim * partial_rotary_factor — Qwen3.5-VL rotates only the first rotary_dim of each head (=64 of 256 for the 4B checkpoint with partial_rotary_factor = 0.25).

§num_k_heads_lin: u32§num_v_heads_lin: u32§k_head_dim_lin: u32§v_head_dim_lin: u32§conv_kernel_size: u32

Implementations§

Source§

impl Qwen35ForwardConfig

Source

pub const fn qwen3_5_4b_mlx_int8() -> Self

Hardcoded constants for mlx-community/Qwen3.5-4B-MLX-8bit. Matches the Metal example’s dims.rs exactly so the extracted forward path is byte-equivalent to the inlined version.

Source

pub const fn q_total(&self) -> u32

Q_TOTAL = num_heads * head_dim * 2 — Qwen3.5 packs the attention output gate into the same projection as Q, so the q_proj produces a [num_heads, head_dim * 2] interleaved tensor that needs a deinterleave step before normalisation.

Source

pub const fn q_only(&self) -> u32

Q_ONLY = num_heads * head_dim — half of Q_TOTAL, the post-deinterleave Q size.

Source

pub const fn kv_dim(&self) -> u32

KV_DIM = num_kv_heads * head_dim.

Source

pub const fn z_dim_lin(&self) -> u32

Z_DIM_LIN = num_v_heads_lin * v_head_dim_lin.

Source

pub const fn qkv_total_lin(&self) -> u32

QKV_TOTAL_LIN = (num_k_heads_lin + num_k_heads_lin) * k_head_dim_lin + num_v_heads_lin * v_head_dim_lin.

Source

pub const fn num_state_heads(&self) -> u32

NUM_STATE_HEADS = num_v_heads_lin — the number of GDN heads the gate / beta / dt_bias / A_log vectors all run over.

Trait Implementations§

Source§

impl Clone for Qwen35ForwardConfig

Source§

fn clone(&self) -> Qwen35ForwardConfig

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 Debug for Qwen35ForwardConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for Qwen35ForwardConfig

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