]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/sort/benchmark/parallel/runCLANG_benchmark_numbers.sh
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / sort / benchmark / parallel / runCLANG_benchmark_numbers.sh
1 clear
2 echo "=================================================================="
3 echo "== B E N C H M A R K N U M B E R S =="
4 echo "== =="
5 echo "== C L A N G 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 clang++ ./file_generator.cpp -std=c++11 -march=native -w -fexceptions -O3 -I../../include -s -o file_generator
11
12 clang++ ./benchmark_numbers.cpp -std=c++11 -march=native -w -fexceptions -O3 -I../../include -pthread -s -lpthread -o benchmark_numbers
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_numbers
20 date
21 rm input.bin
22 rm file_generator
23 rm benchmark_numbers
24 echo "."
25
26 echo "."
27 echo "E N D"
28 echo "."