(peak_rss_mib: Option<&AtomicU64>)
| 2196 | LeanIOResult::ok(LeanOwned::box_usize(0)) |
| 2197 | } |
| 2198 | |
| 2199 | // =========================================================================== |
| 2200 | // Sharding profiler: run the anon kernel out of circuit over a `.ixe`, |
| 2201 | // recording per-block heartbeats + the delta-unfold graph into a `.ixprof`. |
| 2202 | // See `plans/sharding.md`. |
| 2203 | // =========================================================================== |
| 2204 | |
| 2205 | /// Summary returned by [`profile_anon_ixe`]. |
| 2206 | pub struct ProfileStats { |
| 2207 | pub targets: usize, |
| 2208 | pub passed: usize, |
| 2209 | pub failed: usize, |
| 2210 | pub blocks: usize, |
| 2211 | pub edges: usize, |
| 2212 | pub bytes: usize, |
| 2213 | } |
no test coverage detected