You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(benches): update rand crate API and use std::hint::black_box
- Replace criterion::black_box with std::hint::black_box
- Update rand API calls from thread_rng() to rng()
- Replace gen::<T>() with random::<T>() method calls
- Replace gen_bool() with random_bool() method calls
These changes align with newer versions of the rand crate API
and use the standard library's black_box function for benchmarking.
0 commit comments