[0] https://github.com/sarah-ek/faer-rs/blob/main/faer-bench/src...
[1]: https://github.com/sarah-ek/faer-rs/blob/172f651fafe625a2534...
fn sum_of_squares(input: &[i32]) -> i32 { input.iter() .map(|&i| i * i) .sum() }
If you changed it to input.par_iter() then it executes in parallel on multiple threads.