TpGdnDims

Struct TpGdnDims 

Source
pub struct TpGdnDims {
    pub tp_rank: usize,
    pub tp_size: usize,
    pub h: usize,
    pub kd: usize,
    pub vd: usize,
    pub local_nk: usize,
    pub full_nk: usize,
    pub local_nv: usize,
    pub full_nv: usize,
}
Expand description

Pre-TP-shard GDN (linear-attention / SSM) dimensions reconstructed from config.

Mirrors super::TpAttentionDims: topology.rs divides linear_num_key_heads / linear_num_value_heads by tp_world_size at startup, so by the time a loader runs config holds per-rank-local head counts. The full_* fields multiply back up to the pre-shard sizes that the segment slicers expect. Head dims (kd, vd) and the hidden size h are never sharded.

Fields§

§tp_rank: usize§tp_size: usize

tp_world_size clamped to >= 1. Loaders treat tp_size == 1 as the no-shard fast path.

§h: usize

Hidden size (model embed dim) — never sharded.

§kd: usize

Key head dim (linear_key_head_dim) — never sharded.

§vd: usize

Value head dim (linear_value_head_dim) — never sharded.

§local_nk: usize

Per-rank key heads (Q and K share this count).

§full_nk: usize

Full pre-shard key heads = local_nk * tp_size.

§local_nv: usize

Per-rank value heads.

§full_nv: usize

Full pre-shard value heads = local_nv * tp_size.

Implementations§

Source§

impl TpGdnDims

Source

pub fn from_config(config: &ModelConfig) -> Self

Source

pub fn full_key_dim(&self) -> usize

Full (pre-shard) key projection width: full_nk * kd.

Source

pub fn local_key_dim(&self) -> usize

Local key projection width: local_nk * kd.

Source

pub fn full_value_dim(&self) -> usize

Full (pre-shard) value projection width: full_nv * vd.

Source

pub fn local_value_dim(&self) -> usize

Local value projection width: local_nv * vd.

Source

pub fn full_conv_dim(&self) -> usize

Full conv / QKV width: 2*full_nk*kd + full_nv*vd.

Source

pub fn local_conv_dim(&self) -> usize

Local conv / QKV width: 2*local_nk*kd + local_nv*vd.

Source

pub fn full_qkvz_out(&self) -> usize

Full QKVZ out dim: 2*full_nk*kd + 2*full_nv*vd.

Source

pub fn local_qkvz_out(&self) -> usize

Local QKVZ out dim: 2*local_nk*kd + 2*local_nv*vd.

Trait Implementations§

Source§

impl Clone for TpGdnDims

Source§

fn clone(&self) -> TpGdnDims

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 TpGdnDims

Source§

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

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

impl Copy for TpGdnDims

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