Pull from FB rev 63ce89e2f2301e6bba44a111cc7d4218022156f6
[folly.git] / folly / test / BenchmarkTest.cpp
1 /*
2  * Copyright 2012 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 int main(int argc, char** argv) {
71   google::ParseCommandLineFlags(&argc, &argv, true);
72   runBenchmarks();
73   runBenchmarksOnFlag();
74 }