317df615f1699102ee6093d95847a31bf1a31cfe
[folly.git] / folly / test / BenchmarkTest.cpp
1 /*
2  * Copyright 2014 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "folly/Benchmark.h"
18 #include "folly/Foreach.h"
19 #include "folly/String.h"
20 #include <iostream>
21 using namespace folly;
22 using namespace std;
23
24 void fun() {
25   static double x = 1;
26   ++x;
27   doNotOptimizeAway(x);
28 }
29 BENCHMARK(bmFun) { fun(); }
30 BENCHMARK(bmRepeatedFun, n) {
31   FOR_EACH_RANGE (i, 0, n) {
32     fun();
33   }
34 }
35 BENCHMARK_DRAW_LINE()
36
37 BENCHMARK(gun) {
38   static double x = 1;
39   x *= 2000;
40   doNotOptimizeAway(x);
41 }
42
43 BENCHMARK_DRAW_LINE()
44
45 BENCHMARK(baselinevector) {
46   vector<int> v;
47
48   BENCHMARK_SUSPEND {
49     v.resize(1000);
50   }
51
52   FOR_EACH_RANGE (i, 0, 100) {
53     v.push_back(42);
54   }
55 }
56
57 BENCHMARK_RELATIVE(bmVector) {
58   vector<int> v;
59   FOR_EACH_RANGE (i, 0, 100) {
60     v.resize(v.size() + 1, 42);
61   }
62 }
63
64 BENCHMARK_DRAW_LINE()
65
66 BENCHMARK(superslow) {
67   sleep(1);
68 }
69
70 BENCHMARK_DRAW_LINE()
71
72 BENCHMARK(noMulti) {
73   fun();
74 }
75
76 BENCHMARK_MULTI(multiSimple) {
77   FOR_EACH_RANGE (i, 0, 10) {
78     fun();
79   }
80   return 10;
81 }
82
83 BENCHMARK_RELATIVE_MULTI(multiSimpleRel) {
84   FOR_EACH_RANGE (i, 0, 10) {
85     fun();
86     fun();
87   }
88   return 10;
89 }
90
91 BENCHMARK_MULTI(multiIterArgs, iter) {
92   FOR_EACH_RANGE (i, 0, 10 * iter) {
93     fun();
94   }
95   return 10 * iter;
96 }
97
98 BENCHMARK_RELATIVE_MULTI(multiIterArgsRel, iter) {
99   FOR_EACH_RANGE (i, 0, 10 * iter) {
100     fun();
101     fun();
102   }
103   return 10 * iter;
104 }
105
106 unsigned paramMulti(unsigned iter, unsigned num) {
107   for (unsigned i = 0; i < iter; ++i) {
108     for (unsigned j = 0; j < num; ++j) {
109       fun();
110     }
111   }
112   return num * iter;
113 }
114
115 unsigned paramMultiRel(unsigned iter, unsigned num) {
116   for (unsigned i = 0; i < iter; ++i) {
117     for (unsigned j = 0; j < num; ++j) {
118       fun();
119       fun();
120     }
121   }
122   return num * iter;
123 }
124
125 BENCHMARK_PARAM_MULTI(paramMulti, 1);
126 BENCHMARK_RELATIVE_PARAM_MULTI(paramMultiRel, 1);
127
128 BENCHMARK_PARAM_MULTI(paramMulti, 5);
129 BENCHMARK_RELATIVE_PARAM_MULTI(paramMultiRel, 5);
130
131 int main(int argc, char** argv) {
132   google::ParseCommandLineFlags(&argc, &argv, true);
133   runBenchmarks();
134   runBenchmarksOnFlag();
135 }