Skip to content

Instantly share code, notes, and snippets.

@sdleffler
Created November 20, 2016 19:00
Show Gist options
  • Save sdleffler/ce1d50c911e5738241b511d8cae7b8ee to your computer and use it in GitHub Desktop.
Save sdleffler/ce1d50c911e5738241b511d8cae7b8ee to your computer and use it in GitHub Desktop.
sean@sean-Samus:~/Projects/faster-sort$ cargo bench
Finished release [optimized] target(s) in 0.0 secs
Running target/release/deps/faster_sort-5d319d373e6d360c
running 21 tests
test tests::test ... ignored
test tests::new_sort_ascending ... bench: 52,921 ns/iter (+/- 1,924) = 755 MB/s
test tests::new_sort_big_ascending ... bench: 130,940 ns/iter (+/- 69,309) = 2443 MB/s
test tests::new_sort_big_descending ... bench: 130,313 ns/iter (+/- 64,020) = 2455 MB/s
test tests::new_sort_big_random_large ... bench: 2,735,334 ns/iter (+/- 1,171,611) = 116 MB/s
test tests::new_sort_big_random_medium ... bench: 23,094 ns/iter (+/- 10,786) = 138 MB/s
test tests::new_sort_big_random_small ... bench: 1,161 ns/iter (+/- 720) = 137 MB/s
test tests::new_sort_descending ... bench: 54,534 ns/iter (+/- 6,103) = 733 MB/s
test tests::new_sort_random_large ... bench: 923,574 ns/iter (+/- 36,983) = 86 MB/s
test tests::new_sort_random_medium ... bench: 7,413 ns/iter (+/- 514) = 107 MB/s
test tests::new_sort_random_small ... bench: 430 ns/iter (+/- 36) = 93 MB/s
test tests::sort_ascending ... bench: 69,960 ns/iter (+/- 3,042) = 571 MB/s
test tests::sort_big_ascending ... bench: 298,597 ns/iter (+/- 60,692) = 1071 MB/s
test tests::sort_big_descending ... bench: 298,210 ns/iter (+/- 9,004) = 1073 MB/s
test tests::sort_big_random_large ... bench: 2,772,805 ns/iter (+/- 126,730) = 115 MB/s
test tests::sort_big_random_medium ... bench: 23,665 ns/iter (+/- 1,548) = 135 MB/s
test tests::sort_big_random_small ... bench: 1,168 ns/iter (+/- 131) = 136 MB/s
test tests::sort_descending ... bench: 70,631 ns/iter (+/- 9,459) = 566 MB/s
test tests::sort_random_large ... bench: 952,563 ns/iter (+/- 44,896) = 83 MB/s
test tests::sort_random_medium ... bench: 7,525 ns/iter (+/- 389) = 106 MB/s
test tests::sort_random_small ... bench: 435 ns/iter (+/- 49) = 91 MB/s
test result: ok. 0 passed; 0 failed; 1 ignored; 20 measured
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment