pub struct ExpertKey {
pub layer: u32,
pub expert: u32,
}Expand description
Identifies one expert’s weight record: (moe_layer, expert).
layer is a dense MoE-layer index (0..num_moe_layers), not the model’s
absolute layer index — dense attention layers carry no experts and are
skipped when the index is built.
Fields§
§layer: u32§expert: u32Implementations§
Trait Implementations§
impl Copy for ExpertKey
impl Eq for ExpertKey
impl StructuralPartialEq for ExpertKey
Auto Trait Implementations§
impl Freeze for ExpertKey
impl RefUnwindSafe for ExpertKey
impl Send for ExpertKey
impl Sync for ExpertKey
impl Unpin for ExpertKey
impl UnwindSafe for ExpertKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.