style: cargo fmt --workspace (whitespace/wrapping only, no semantic change)

Whole-workspace rustfmt pass picked up while iterating on Mamba GPU
backward work. Verified formatting-only via diff sampling; no logic
changed.

Co-Authored-By: Claude Sonnet 5 <[email protected]>
This commit is contained in:
osobh
2026-08-10 07:09:36 -07:00
co-authored by Claude Sonnet 5
parent ad6405663f
commit 4aaa36a57a
305 changed files with 25537 additions and 18337 deletions
@@ -345,9 +345,11 @@ mod tests {
let scheduler = PipelineScheduler::new(config);
let schedule = scheduler.schedule();
let has_higher_stage = schedule.iter().flatten().any(|op| matches!(op,
PipelineOp::Forward { stage, .. } if *stage >= 4
));
let has_higher_stage = schedule.iter().flatten().any(|op| {
matches!(op,
PipelineOp::Forward { stage, .. } if *stage >= 4
)
});
assert!(
has_higher_stage,
"interleaved schedule must reference virtual stages >= num_stages"