]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/sort/benchmark/parallel/runGCC_benchmark_strings.sh
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / sort / benchmark / parallel / runGCC_benchmark_strings.sh
1 clear
2 echo "=================================================================="
3 echo "== B E N C H M A R K S T R I N G S =="
4 echo "== =="
5 echo "== G C C C O M P I L E R =="
6 echo "=================================================================="
7 echo "."
8 echo "C O M P I L I N G . . . . . . . . . . ."
9 echo "."
10 g++ ./file_generator.cpp -std=c++11 -march=native -w -fexceptions -O3 -I../../include -s -o file_generator
11
12 g++ ./benchmark_strings.cpp -std=c++11 -march=native -w -fexceptions -O3 -I../../include -pthread -s -lpthread -o benchmark_strings
13
14 echo "R U N N I N G . . . . . . . . . . ."
15 echo "( The time needed is around 10 minutes depending of your machine )"
16 ./file_generator input.bin 125000000
17 echo "."
18 date
19 ./benchmark_strings
20 date
21
22 rm input.bin
23 rm file_generator
24 rm benchmark_strings
25 echo "."
26 echo "."
27 echo "E N D"
28 echo "."