fada77fef2da09a5295bb33ec956fa2bab22ce13
[folly.git] / folly / experimental / hazptr / bench / HazptrBench-NoAmb.cpp
1 /*
2  * Copyright 2017 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 #define HAZPTR_AMB false
18
19 #include <folly/experimental/hazptr/bench/HazptrBench.h>
20 #include <folly/portability/GFlags.h>
21 #include <folly/portability/GTest.h>
22
23 using namespace folly::hazptr;
24
25 int nthreads;
26 int size;
27
28 BENCHMARK(no_amb, iters) {
29   run_once(nthreads, size, iters);
30 }
31
32 BENCHMARK(no_amb_dup, iters) {
33   run_once(nthreads, size, iters);
34 }
35
36 int main(int argc, char** argv) {
37   testing::InitGoogleTest(&argc, argv);
38   gflags::ParseCommandLineFlags(&argc, &argv, true);
39   std::cout << "--------------------------------------------------- No AMB\n";
40   for (int i : nthr) {
41     nthreads = i;
42     for (int j : sizes) {
43       size = j;
44       std::cout << i << " threads -- " << j << "-item list" << std::endl;
45       bench("no amb                      ", i, j, 0);
46       bench("no amb - dup                ", i, j, 0);
47     }
48   }
49   std::cout << "----------------------------------------------------------\n";
50 }