-
Notifications
You must be signed in to change notification settings - Fork 9
/
runBenchmarks.sh
executable file
·22 lines (16 loc) · 1.81 KB
/
runBenchmarks.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cmake-build-release/HamtBench -s 100 -r html -f ".*<int>::insert" -o "BenchmarkResults/insert_hash_e5.html" -i 100000
cmake-build-release/HamtBench -s 1000 -r html -f ".*<hash>::find" -o "BenchmarkResults/find_hash_e2.html" -i 100
cmake-build-release/HamtBench -s 1000 -r html -f ".*<int>::find" -o "BenchmarkResults/find_int_e2.html" -i 100
cmake-build-release/HamtBench -s 1000 -r html -f ".*<string>::find" -o "BenchmarkResults/find_string_e2.html" -i 100
cmake-build-release/HamtBench -s 1000 -r html -f ".*<hash>::find" -o "BenchmarkResults/find_hash_e3.html" -i 1000
cmake-build-release/HamtBench -s 1000 -r html -f ".*<int>::find" -o "BenchmarkResults/find_int_e3.html" -i 1000
cmake-build-release/HamtBench -s 1000 -r html -f ".*<string>::find" -o "BenchmarkResults/find_string_e3.html" -i 1000
cmake-build-release/HamtBench -s 1000 -r html -f ".*<hash>::find" -o "BenchmarkResults/find_hash_e4.html" -i 10000
cmake-build-release/HamtBench -s 1000 -r html -f ".*<int>::find" -o "BenchmarkResults/find_int_e4.html" -i 10000
cmake-build-release/HamtBench -s 1000 -r html -f ".*<string>::find" -o "BenchmarkResults/find_string_e4.html" -i 10000
cmake-build-release/HamtBench -s 100 -r html -f ".*<hash>::find" -o "BenchmarkResults/find_hash_e5.html" -i 100000
cmake-build-release/HamtBench -s 100 -r html -f ".*<int>::find" -o "BenchmarkResults/find_int_e5.html" -i 100000
cmake-build-release/HamtBench -s 100 -r html -f ".*<string>::find" -o "BenchmarkResults/find_string_e5.html" -i 100000
cmake-build-release/HamtBench -s 100 -r html -f ".*<hash>::find" -o "BenchmarkResults/find_hash_e6.html" -i 1000000
cmake-build-release/HamtBench -s 100 -r html -f ".*<int>::find" -o "BenchmarkResults/find_int_e6.html" -i 1000000
cmake-build-release/HamtBench -s 100 -r html -f ".*<string>::find" -o "BenchmarkResults/find_string_e6.html" -i 1000000