gam_solve/parallel_strategy.rs
1//! Workload-aware parallel scheduling for row reductions.
2//!
3//! This module deliberately does not size or replace Rayon's global pool.
4//! The pool is process infrastructure; each numerical kernel still owns the
5//! decision of how much parallelism is useful for its arithmetic shape.
6
7pub use gam_linalg::parallel::{row_reduction_chunk_count, row_reduction_chunk_rows};