mirror of
https://github.com/uutils/coreutils.git
synced 2025-12-23 08:47:37 +00:00
Disable variance-heavy benchmark tests
Comment out benchmarks due to high variance
This commit is contained in:
parent
9b9a913d68
commit
ec52cf9ac9
1 changed files with 4 additions and 0 deletions
|
|
@ -20,6 +20,7 @@ fn factor_multiple_u64s(bencher: Bencher, start_num: u64) {
|
|||
});
|
||||
}
|
||||
|
||||
/* Too much variance
|
||||
/// Benchmark multiple u128 digits
|
||||
#[divan::bench(args = [(18446744073709551616)])]
|
||||
fn factor_multiple_u128s(bencher: Bencher, start_num: u128) {
|
||||
|
|
@ -34,7 +35,9 @@ fn factor_multiple_u128s(bencher: Bencher, start_num: u128) {
|
|||
}
|
||||
});
|
||||
}
|
||||
*/
|
||||
|
||||
/* Too much variance
|
||||
/// Benchmark multiple > u128::MAX digits
|
||||
#[divan::bench]
|
||||
fn factor_multiple_big_uint(bencher: Bencher) {
|
||||
|
|
@ -50,6 +53,7 @@ fn factor_multiple_big_uint(bencher: Bencher) {
|
|||
}
|
||||
});
|
||||
}
|
||||
*/
|
||||
|
||||
fn main() {
|
||||
divan::main();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue