pub struct VNextCheckpointArgs {
pub output_dir: Option<PathBuf>,
pub value_ids: Vec<String>,
pub maximum_prefill_waves: Option<usize>,
pub maximum_decode_waves: Option<usize>,
pub capture_product_output: bool,
pub teacher_token_file: Option<PathBuf>,
}Fields§
§output_dir: Option<PathBuf>Empty directory for typed vNext activation evidence.
value_ids: Vec<String>Semantic ProgramValueId retained and captured after a selected execution wave. Repeat for multiple layer or logits checkpoints.
maximum_prefill_waves: Option<usize>Maximum number of real prefill waves to capture. Startup warmup is excluded. Defaults to one when capture is configured.
maximum_decode_waves: Option<usize>Maximum number of real decode waves to capture. Startup warmup is excluded. Defaults to zero when capture is configured.
capture_product_output: boolCapture the existing product logits/token readback without retaining an activation or changing the compiled memory plan.
teacher_token_file: Option<PathBuf>JSON file containing a bounded canonical token history for a same-history
numerical diagnostic. Supported only by one-shot ferrum run.
Implementations§
Source§impl VNextCheckpointArgs
impl VNextCheckpointArgs
pub fn to_config(&self) -> Result<Option<VNextCheckpointCaptureConfig>>
Trait Implementations§
Source§impl Args for VNextCheckpointArgs
impl Args for VNextCheckpointArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Clone for VNextCheckpointArgs
impl Clone for VNextCheckpointArgs
Source§fn clone(&self) -> VNextCheckpointArgs
fn clone(&self) -> VNextCheckpointArgs
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 moreSource§impl Debug for VNextCheckpointArgs
impl Debug for VNextCheckpointArgs
Source§impl Default for VNextCheckpointArgs
impl Default for VNextCheckpointArgs
Source§fn default() -> VNextCheckpointArgs
fn default() -> VNextCheckpointArgs
Returns the “default value” for a type. Read more
Source§impl FromArgMatches for VNextCheckpointArgs
impl FromArgMatches for VNextCheckpointArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for VNextCheckpointArgs
impl RefUnwindSafe for VNextCheckpointArgs
impl Send for VNextCheckpointArgs
impl Sync for VNextCheckpointArgs
impl Unpin for VNextCheckpointArgs
impl UnsafeUnpin for VNextCheckpointArgs
impl UnwindSafe for VNextCheckpointArgs
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<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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