Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
- { package: uu_numfmt }
- { package: uu_rm }
- { package: uu_seq }
- { package: uu_shuf }
- { package: uu_sort }
- { package: uu_split }
- { package: uu_tsort }
Expand Down
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions src/uu/shuf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,12 @@ fluent = { workspace = true }
[[bin]]
name = "shuf"
path = "src/main.rs"

[[bench]]
name = "shuf_bench"
harness = false

[dev-dependencies]
divan = { workspace = true }
tempfile = { workspace = true }
uucore = { workspace = true, features = ["benchmark"] }
53 changes: 53 additions & 0 deletions src/uu/shuf/benches/shuf_bench.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.

use divan::{Bencher, black_box};
use uu_shuf::uumain;
use uucore::benchmark::{run_util_function, setup_test_file, text_data};

/// Benchmark shuffling lines from a file
/// Tests the default mode with a large number of lines
#[divan::bench(args = [100_000])]
fn shuf_lines(bencher: Bencher, num_lines: usize) {
let data = text_data::generate_by_lines(num_lines, 80);
let file_path = setup_test_file(&data);
let file_path_str = file_path.to_str().unwrap();

bencher.bench(|| {
black_box(run_util_function(uumain, &[file_path_str]));
});
}

/// Benchmark shuffling a numeric range with -i
/// Tests the input-range mode which uses a different algorithm
#[divan::bench(args = [1_000_000])]
fn shuf_input_range(bencher: Bencher, range_size: usize) {
let range_arg = format!("1-{range_size}");

bencher.bench(|| {
black_box(run_util_function(uumain, &["-i", &range_arg]));
});
}

/// Benchmark shuffling with repeat (sampling with replacement)
/// Tests the -r flag combined with -n to output a specific count
#[divan::bench(args = [50_000])]
fn shuf_repeat_sampling(bencher: Bencher, num_lines: usize) {
let data = text_data::generate_by_lines(10_000, 80);
let file_path = setup_test_file(&data);
let file_path_str = file_path.to_str().unwrap();
let count = format!("{num_lines}");

bencher.bench(|| {
black_box(run_util_function(
uumain,
&["-r", "-n", &count, file_path_str],
));
});
}

fn main() {
divan::main();
}
Loading