Skip to main content

AddressableExpertRouteRequest

Struct AddressableExpertRouteRequest 

Source
pub struct AddressableExpertRouteRequest<'a, T> {
    pub unit: usize,
    pub input: &'a T,
    pub global_experts: &'a [usize],
    pub owner_local_experts: &'a [usize],
    pub selected_scores: &'a T,
    pub coefficients: &'a T,
    pub pass: ExpertPass,
    pub access: ParameterBankAccess,
    pub combination: ExpertRouteCombination,
}
Expand description

One owner-local grouped batch submitted after expert exchange.

Fields§

§unit: usize

Global execution unit containing the addressable expert bank.

§input: &'a T

Rows received from every source peer.

§global_experts: &'a [usize]

Checkpoint-global expert identity for every received row.

Addressable storage keys must be derived from this identity. It is deliberately kept separate from owner_local_experts, whose values are valid only as indices into the rank-local grouped operator.

§owner_local_experts: &'a [usize]

Dense owner-local expert identity for every received row.

§selected_scores: &'a T

Selected router scores aligned one-for-one with received rows.

§coefficients: &'a T

Final route coefficients aligned one-for-one with received rows.

§pass: ExpertPass

Prefill or decode execution classification.

§access: ParameterBankAccess

Storage access classification derived from pass.

§combination: ExpertRouteCombination

Architecture-declared route combination.

Implementations§

Source§

impl<T> AddressableExpertRouteRequest<'_, T>

Source

pub fn addressable_bank_key(&self, row: usize) -> Option<ParameterBankKey>

Returns the only valid addressable-bank key for one routed row.

The owner-local ID is intentionally not accepted here: it addresses the compact grouped operator, not checkpoint-global storage.

Source

pub fn owner_local_execution_id(&self, row: usize) -> Option<usize>

Returns the rank-local grouped-operator ID for one routed row.

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.