embedded3: study knobs — aperture_substeps (space-time sub-sampling), momentum_volume_cell_mean, RTX_E3_MERGE_FRACTION; all default off (refuted as the fresh-row residual's source)
CI / Test (ubuntu-latest) (push) Blocked by required conditions
CI / Python Bindings (maturin) (macos-latest) (push) Blocked by required conditions
CI / Build (macos-latest) (push) Waiting to run
CI / Test (macos-latest) (push) Blocked by required conditions
CI / Python Bindings (maturin) (ubuntu-latest) (push) Blocked by required conditions
CI / WASM Build + Size Check (push) Blocked by required conditions
CI / Distributed Training Tests (push) Blocked by required conditions
CI / CI Success (push) Blocked by required conditions
CI / Build (ubuntu-latest) (push) Failing after 4s
Documentation / Build User Guide (push) Successful in 4s
CI / Build CPU-Only (Explicit) (push) Failing after 3s
Documentation / Build API Documentation (push) Failing after 4s
CI / Format Check (push) Failing after 14s
CI / Clippy Check (push) Failing after 48s
Performance Benchmarks / Run Benchmarks (push) Successful in 1m52s

Co-Authored-By: Claude Fable 5.1 <[email protected]>
This commit is contained in:
Omar Sobh
2026-09-17 21:38:46 -05:00
co-authored by Claude Fable 5.1
parent 33de5d0080
commit c713bbbbb2
5 changed files with 87 additions and 9 deletions
@@ -241,6 +241,14 @@ fn run(scheme: WallScheme, moving: bool, dt: f64, t_end: f64) -> Run {
z1: Side::Periodic,
..Boundaries::default()
},
max_surface_speed: Some(U_PEAK),
// `RTX_E3_SUBSTEPS`: intermediate geometries for the space-time apertures.
aperture_substeps: std::env::var("RTX_E3_SUBSTEPS")
.ok()
.and_then(|v| v.parse().ok())
.unwrap_or(0),
// `RTX_E3_CELL_MEAN=1`: the momentum volume from the two cells' fractions.
momentum_volume_cell_mean: std::env::var("RTX_E3_CELL_MEAN").is_ok_and(|v| v == "1"),
..Parameters::default()
},
);
@@ -133,6 +133,7 @@ pub fn measure(n: usize, scheme: WallScheme, c: (f64, f64, f64)) -> Measurement
tolerance: 1e-8,
convection_scheme: ConvectionScheme::Upwind,
wall_scheme: scheme,
momentum_volume_cell_mean: std::env::var("RTX_E3_CELL_MEAN").is_ok_and(|v| v == "1"),
..Parameters::default()
},
);