pub enum Command {
Show 29 variants
PrepareDavis {
output: PathBuf,
},
PrepareSintel {
output: PathBuf,
},
GenerateScene {
output: PathBuf,
scenario: Option<String>,
},
RunDemoA {
output: PathBuf,
scenario: Option<String>,
},
RunDemoB {
output: PathBuf,
scenario: Option<String>,
},
RunAblations {
output: PathBuf,
},
RunScenario {
scenario: String,
output: PathBuf,
},
RunAll {
output: PathBuf,
scenario: Option<String>,
},
RunTiming {
output: PathBuf,
},
RunResolutionScaling {
output: PathBuf,
},
RunSensitivity {
output: PathBuf,
},
RunDemoBEfficiency {
output: PathBuf,
},
RunGpuPath {
output: PathBuf,
},
ImportExternal {
manifest: PathBuf,
output: PathBuf,
},
RunRealismSuite {
output: PathBuf,
},
ExportEvaluatorHandoff {
output: PathBuf,
},
Validate {
output: PathBuf,
},
ValidateFinal {
output: PathBuf,
allow_pending_engine_native: bool,
},
ImportEngineNative {
manifest: PathBuf,
output: PathBuf,
},
RunEngineNativeReplay {
manifest: PathBuf,
output: PathBuf,
},
RunUnrealNative {
manifest: PathBuf,
output: PathBuf,
run_name: Option<String>,
},
ConfirmMixedRegime {
output: PathBuf,
},
ValidateArtifacts {
output: PathBuf,
},
ExportMinimalReport {
output: PathBuf,
},
ProbeExternalGpu {
manifest: PathBuf,
output: PathBuf,
capture_label: Option<String>,
width: Option<usize>,
height: Option<usize>,
},
RunEngineRealisticBridge {
output: PathBuf,
},
RunCheckSigning {
output: PathBuf,
},
RunFastPath {
output: PathBuf,
},
SbirDemo {
output: PathBuf,
},
}Variants§
PrepareDavis
PrepareSintel
GenerateScene
RunDemoA
RunDemoB
RunAblations
RunScenario
RunAll
RunTiming
RunResolutionScaling
RunSensitivity
RunDemoBEfficiency
RunGpuPath
ImportExternal
RunRealismSuite
ExportEvaluatorHandoff
Validate
ValidateFinal
Fields
ImportEngineNative
Import and validate an engine-native temporal buffer capture. See docs/engine_capture_schema.md and examples/engine_native_capture_manifest.json.
RunEngineNativeReplay
Run the full DSFB replay pipeline on an engine-native capture. Same pipeline as DAVIS/Sintel — no special-case path.
RunUnrealNative
Run the strict Unreal-native empirical replay path on a real Unreal capture bundle. This mode refuses pending, proxy-labeled, or synthetic manifests.
ConfirmMixedRegime
Confirm one mixed-regime case (aliasing + variance co-active in same ROI). Uses internal synthetic scenario data; engine-native confirmation remains pending.
ValidateArtifacts
ExportMinimalReport
ProbeExternalGpu
Internal: run GPU probe in an isolated subprocess (used by run-external-replay)
Fields
RunEngineRealisticBridge
Generate the engine-realistic synthetic 1080p bridge and run the full external validation bundle on it.
RunCheckSigning
Generate the check-signing evidence report answering all panel objections.
RunFastPath
Run the minimal inline fast-path proxy at 1080p and 4K, measure GPU timings, and write artifacts to output/fast_path/.
This is a reduced deployment proxy derived from DSFB residual structure. It is NOT the full DSFB supervisory system.
SbirDemo
Run all tests and pipeline stages, then generate a single PDF engineering report suitable for SBIR crate-quality review.
Writes sbir_demo_report.pdf into the output directory alongside all intermediate artifacts and a machine-readable test_results.json.
Trait Implementations§
Source§impl FromArgMatches for Command
impl FromArgMatches for Command
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>
ArgMatches to self.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§impl Subcommand for Command
impl Subcommand for Command
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Self can parse a specific subcommand