diff options
author | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
commit | a990de90fe41456a23e58bd087d2f107d321f3a1 (patch) | |
tree | 15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/indicatif/examples/steady.rs | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
Diffstat (limited to 'vendor/indicatif/examples/steady.rs')
-rw-r--r-- | vendor/indicatif/examples/steady.rs | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/vendor/indicatif/examples/steady.rs b/vendor/indicatif/examples/steady.rs deleted file mode 100644 index 4515ce9..0000000 --- a/vendor/indicatif/examples/steady.rs +++ /dev/null @@ -1,50 +0,0 @@ -use std::{ - thread::sleep, - time::{Duration, Instant}, -}; - -use indicatif::{ProgressBar, ProgressIterator, ProgressStyle}; - -fn main() { - let iterations = 1000; - // Set the array with all the blocksizes to test - let blocksizes: [usize; 7] = [16, 64, 256, 1024, 4096, 16384, 65536]; - - // Set the array with all the durations to save - let mut elapsed: [Duration; 7] = [Duration::ZERO; 7]; - - for (pos, blocksize) in blocksizes.iter().enumerate() { - // Set up the style for the progressbar - let sty = ProgressStyle::default_spinner() - .tick_strings(&[ - "▹▹▹▹▹", - "▸▹▹▹▹", - "▹▸▹▹▹", - "▹▹▸▹▹", - "▹▹▹▸▹", - "▹▹▹▹▸", - "▪▪▪▪▪", - ]) - .template("{prefix} {pos:>4}/{len:4} Iterations per second: {per_sec} {spinner} {msg}") - .unwrap(); - - // Set up the progress bar and apply the style - let pb = ProgressBar::new(iterations); - pb.set_style(sty); - pb.enable_steady_tick(Duration::from_millis(120)); - pb.set_prefix(format!("Doing test with Blocksize {:5?}:", blocksize)); - - // Iterate for the given number of iterations - // for _ in (0..iterations) { - for _ in (0..iterations).progress_with(pb) { - // pb.inc(1); - // Take a timestamp for timemeasurement later on - let now = Instant::now(); - sleep(Duration::from_millis(1)); - // Save the elapsed time for later evaluation - elapsed[pos] += now.elapsed(); - } - - // pb.finish_using_style(); - } -} |