pub struct MinimaxEngine {
pub arch: String,
}Fields§
§arch: StringImplementations§
Source§impl MinimaxEngine
impl MinimaxEngine
Sourcepub fn reject(_arch: &str) -> Result<(), MinimaxUnavailable>
pub fn reject(_arch: &str) -> Result<(), MinimaxUnavailable>
Refuses, naming what exists and what does not.
The block-sparse SELECTION is ported and tested
(ferrox_core::block_sparse): which 128-token KV blocks a
query may read, per KV head, with the force-included first and
newest blocks that keep a selection from ever being empty. What
is absent is everything around it – the loader, the 256-expert
sigmoid MoE, and the MTP draft heads – so there is nothing for
that selection to select over yet.
Saying which half exists matters: a bare “not implemented” invites the next reader to re-port the selection rule that is already here and already covered.
Auto Trait Implementations§
impl Freeze for MinimaxEngine
impl RefUnwindSafe for MinimaxEngine
impl Send for MinimaxEngine
impl Sync for MinimaxEngine
impl Unpin for MinimaxEngine
impl UnsafeUnpin for MinimaxEngine
impl UnwindSafe for MinimaxEngine
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more