pub enum ExecutionScope {
Enrollment,
Decode,
Prefill,
Microdecoder,
MicrodecoderVerify,
Talker,
}Expand description
The model component whose maximum reduction length a proof row represents.
Variants§
Enrollment
Enrollment-only codec encoder.
Decode
Per-frame decode path.
Prefill
Prompt-time text projection/embedding path.
Microdecoder
The residual-code microdecoder’s one-step execution.
MicrodecoderVerify
The seq-16 residual-code verifier; it shares the microdecoder’s per-output K.
Talker
Main Qwen talker.
Implementations§
Trait Implementations§
Source§impl Clone for ExecutionScope
impl Clone for ExecutionScope
Source§fn clone(&self) -> ExecutionScope
fn clone(&self) -> ExecutionScope
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExecutionScope
Source§impl Debug for ExecutionScope
impl Debug for ExecutionScope
impl Eq for ExecutionScope
Source§impl PartialEq for ExecutionScope
impl PartialEq for ExecutionScope
impl StructuralPartialEq for ExecutionScope
Auto Trait Implementations§
impl Freeze for ExecutionScope
impl RefUnwindSafe for ExecutionScope
impl Send for ExecutionScope
impl Sync for ExecutionScope
impl Unpin for ExecutionScope
impl UnsafeUnpin for ExecutionScope
impl UnwindSafe for ExecutionScope
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