pub enum ExpertArm {
Bf16Dequant,
Native,
}Expand description
Lane 7: which expert-GEMM realization runs. Bf16Dequant = the lane-4 gated rung
(on-the-fly exact dequant + cuBLASLt bf16, the fallback and A/B reference).
Native = the reference-law quantized GEMMs (act_quant per-128 FP8 codes ×
as-stored NVFP4/MXFP4 slabs, kernel.py fp4_gemm arithmetic — RECEIPTS.md “Lane 7”).
Selected by MEMRA_DSV4_EXPERT_ARM=native via [memra_gguf::dsv4_forward:: expert_arm_native] — the SAME seam the CPU oracle reads, so one invocation can
never mix numeric classes.
Variants§
Trait Implementations§
impl Copy for ExpertArm
impl Eq for ExpertArm
impl StructuralPartialEq for ExpertArm
Auto Trait Implementations§
impl Freeze for ExpertArm
impl RefUnwindSafe for ExpertArm
impl Send for ExpertArm
impl Sync for ExpertArm
impl Unpin for ExpertArm
impl UnsafeUnpin for ExpertArm
impl UnwindSafe for ExpertArm
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