Skip to content

Instantly share code, notes, and snippets.

@vks
Last active August 29, 2015 14:05
Show Gist options
  • Save vks/3d7db656c1ac22b5fc41 to your computer and use it in GitHub Desktop.
Save vks/3d7db656c1ac22b5fc41 to your computer and use it in GitHub Desktop.
Benchmark results of the Rust implementations `HashMap` and `PhfMap`
# without optimizations
running 4 tests
test hashmap_find_existing ... bench: 2247 ns/iter (+/- 190)
test hashmap_find_nonexisting ... bench: 1399 ns/iter (+/- 145)
test phf_find_existing ... bench: 1891 ns/iter (+/- 128)
test phf_find_nonexisting ... bench: 1614 ns/iter (+/- 99)
test result: ok. 0 passed; 0 failed; 0 ignored; 4 measured
# with -O
running 4 tests
test hashmap_find_existing ... bench: 272 ns/iter (+/- 15)
test hashmap_find_nonexisting ... bench: 221 ns/iter (+/- 18)
test phf_find_existing ... bench: 988 ns/iter (+/- 31)
test phf_find_nonexisting ... bench: 883 ns/iter (+/- 95)
test result: ok. 0 passed; 0 failed; 0 ignored; 4 measured
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment