File tree
18 files changed
+292
-375
lines changed- benchmarks
- inc
- src
- stl
- inc
18 files changed
+292
-375
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
216 | 216 |
| |
217 | 217 |
| |
218 | 218 |
| |
219 |
| - | |
220 |
| - | |
221 |
| - | |
222 |
| - | |
223 |
| - | |
224 |
| - | |
225 |
| - | |
226 |
| - | |
227 |
| - | |
228 |
| - |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
46 | 46 |
| |
47 | 47 |
| |
48 | 48 |
| |
49 |
| - | |
50 |
| - | |
51 |
| - | |
52 |
| - | |
53 |
| - | |
54 |
| - | |
55 |
| - | |
56 |
| - | |
57 |
| - | |
58 |
| - | |
59 |
| - | |
60 |
| - | |
61 |
| - | |
62 |
| - | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
63 | 53 |
| |
64 | 54 |
| |
65 |
| - | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
66 | 58 |
| |
67 | 59 |
| |
68 | 60 |
| |
| |||
72 | 64 |
| |
73 | 65 |
| |
74 | 66 |
| |
75 |
| - | |
76 |
| - | |
77 |
| - | |
78 | 67 |
| |
79 | 68 |
| |
80 | 69 |
| |
| 70 | + | |
| 71 | + | |
81 | 72 |
| |
82 | 73 |
| |
83 |
| - | |
84 | 74 |
| |
85 | 75 |
| |
86 | 76 |
| |
| |||
131 | 121 |
| |
132 | 122 |
| |
133 | 123 |
| |
134 |
| - | |
135 |
| - | |
136 |
| - | |
137 |
| - | |
| 124 | + | |
| 125 | + | |
| 126 | + |
Submodule google-benchmark updated 99 files
- .clang-tidy+35-4
- .clang-tidy.ignore+1
- .github/libcxx-setup.sh+14-5
- .github/workflows/bazel.yml+6-4
- .github/workflows/build-and-test-min-cmake.yml+3
- .github/workflows/build-and-test-perfcounters.yml+3
- .github/workflows/build-and-test.yml+30-40
- .github/workflows/clang-format-lint.yml+5-4
- .github/workflows/clang-tidy-lint.yml+7-4
- .github/workflows/doxygen.yml+3
- .github/workflows/pre-commit.yml+3
- .github/workflows/sanitizer.yml+3-2
- .github/workflows/test_bindings.yml+3
- .github/workflows/wheels.yml+7-16
- .pre-commit-config.yaml+3-3
- .ycm_extra_conf.py+4-4
- BUILD.bazel+6-18
- CMakeLists.txt+10-11
- MODULE.bazel+4-5
- README.md+2-2
- WORKSPACE-4
- bazel/benchmark_deps.bzl-8
- bindings/python/google_benchmark/BUILD+1
- bindings/python/google_benchmark/__init__.py+9-8
- bindings/python/google_benchmark/example.py+3-3
- cmake/CXXFeatureCheck.cmake+2-2
- cmake/Config.cmake.in+1
- cmake/GoogleTest.cmake.in+3-2
- docs/user_guide.md+7-12
- include/benchmark/benchmark.h+110-233
- pyproject.toml+4-3
- setup.py+6-9
- src/CMakeLists.txt+3
- src/benchmark.cc+69-36
- src/benchmark_api_internal.cc+5-6
- src/benchmark_api_internal.h+5-6
- src/benchmark_main.cc+1-1
- src/benchmark_name.cc+2-2
- src/benchmark_register.cc+36-18
- src/benchmark_runner.cc+48-36
- src/benchmark_runner.h+4-7
- src/check.cc+4-1
- src/check.h+11-5
- src/colorprint.cc+4-2
- src/commandlineflags.cc+36-13
- src/commandlineflags.h+4
- src/complexity.cc+3-1
- src/console_reporter.cc+13-11
- src/counter.cc+8-6
- src/csv_reporter.cc+10-4
- src/cycleclock.h+13-1
- src/json_reporter.cc+22-16
- src/log.h-12
- src/re.h+3-5
- src/reporter.cc+17-8
- src/statistics.cc+32-14
- src/string_util.cc+17-8
- src/string_util.h-1
- src/sysinfo.cc+118-110
- src/timers.cc+14-10
- test/BUILD+13-10
- test/CMakeLists.txt+18-27
- test/basic_test.cc+2-4
- test/benchmark_min_time_flag_iters_test.cc+9-8
- test/benchmark_min_time_flag_time_test.cc+13-12
- test/benchmark_random_interleaving_gtest.cc+3-2
- test/benchmark_setup_teardown_cb_types_gtest.cc+126
- test/benchmark_setup_teardown_test.cc+9-3
- test/benchmark_test.cc+30-20
- test/complexity_test.cc+18-16
- test/cxx03_test.cc-62
- test/cxx11_test.cc+12
- test/diagnostics_test.cc+17-7
- test/donotoptimize_test.cc+2-4
- test/filter_test.cc+6-5
- test/internal_threading_test.cc+2-1
- test/link_main_test.cc+2-1
- test/map_test.cc+1-1
- test/memory_manager_test.cc+2-1
- test/memory_results_gtest.cc+101
- test/output_test.h+8-6
- test/output_test_helper.cc+67-30
- test/perf_counters_gtest.cc+6-2
- test/profiler_manager_iterations_test.cc+62
- test/profiler_manager_test.cc+1
- test/register_benchmark_test.cc+7-12
- test/reporter_output_test.cc+7-4
- test/skip_with_error_test.cc+8-5
- test/string_util_gtest.cc+94-90
- test/time_unit_gtest.cc+1-1
- test/user_counters_tabular_test.cc+4-2
- test/user_counters_test.cc+14-7
- test/user_counters_thousands_test.cc+2-1
- tools/BUILD.bazel+1
- tools/compare.py+28-7
- tools/gbench/report.py+67-51
- tools/gbench/util.py+24-26
- tools/libpfm.BUILD.bazel+229-9
- tools/strip_asm.py+7-7
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 |
| - | |
9 | 8 |
| |
10 | 9 |
| |
11 | 10 |
| |
12 |
| - | |
13 |
| - | |
14 | 11 |
| |
15 | 12 |
| |
16 |
| - | |
17 |
| - | |
18 |
| - | |
| 13 | + | |
19 | 14 |
| |
20 | 15 |
| |
21 | 16 |
| |
| |||
25 | 20 |
| |
26 | 21 |
| |
27 | 22 |
| |
28 |
| - | |
| 23 | + | |
29 | 24 |
| |
30 | 25 |
| |
31 | 26 |
| |
|
This file was deleted.
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
15 |
| - | |
16 |
| - | |
17 |
| - | |
18 |
| - | |
19 |
| - | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
20 | 19 |
| |
21 |
| - | |
22 |
| - | |
| 20 | + | |
| 21 | + | |
23 | 22 |
| |
24 |
| - | |
| 23 | + | |
25 | 24 |
| |
26 |
| - | |
| 25 | + | |
27 | 26 |
| |
28 |
| - | |
29 |
| - | |
30 |
| - | |
31 |
| - | |
32 |
| - | |
33 |
| - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
34 | 32 |
| |
35 |
| - | |
36 |
| - | |
37 | 33 |
| |
38 | 34 |
| |
39 |
| - | |
40 |
| - | |
41 |
| - | |
42 |
| - | |
43 |
| - | |
44 |
| - | |
45 |
| - | |
46 |
| - | |
47 |
| - | |
48 |
| - | |
49 |
| - | |
50 |
| - | |
51 |
| - | |
52 |
| - | |
53 |
| - | |
54 |
| - | |
55 |
| - | |
56 |
| - | |
57 |
| - | |
58 |
| - | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
59 | 57 |
| |
60 | 58 |
| |
61 | 59 |
| |
62 |
| - | |
63 |
| - | |
64 |
| - | |
65 |
| - | |
66 |
| - | |
67 |
| - | |
68 |
| - | |
69 |
| - | |
70 |
| - | |
71 |
| - | |
72 |
| - | |
73 |
| - | |
74 |
| - | |
75 |
| - | |
76 |
| - | |
77 |
| - | |
78 |
| - | |
79 |
| - | |
80 |
| - | |
81 |
| - | |
82 |
| - | |
83 |
| - | |
84 |
| - | |
85 |
| - | |
86 |
| - | |
87 |
| - | |
88 |
| - | |
89 |
| - | |
90 |
| - | |
91 |
| - | |
92 |
| - | |
93 |
| - | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
94 | 90 |
| |
| 91 | + | |
| 92 | + | |
95 | 93 |
| |
96 |
| - | |
97 |
| - | |
| 94 | + | |
98 | 95 |
| |
99 | 96 |
| |
100 | 97 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
15 |
| - | |
16 |
| - | |
17 |
| - | |
18 |
| - | |
19 |
| - | |
20 |
| - | |
21 |
| - | |
22 |
| - | |
23 |
| - | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
24 | 21 |
| |
| 22 | + | |
| 23 | + | |
25 | 24 |
| |
26 |
| - | |
27 |
| - | |
| 25 | + | |
| 26 | + | |
28 | 27 |
| |
29 |
| - | |
30 |
| - | |
31 |
| - | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
32 | 31 |
| |
33 |
| - | |
34 |
| - | |
35 |
| - | |
36 |
| - | |
37 |
| - | |
38 |
| - | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
39 | 37 |
| |
40 | 38 |
| |
| 39 | + | |
41 | 40 |
| |
42 |
| - | |
43 |
| - | |
44 |
| - | |
45 |
| - | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
46 | 45 |
| |
47 |
| - | |
48 |
| - | |
49 |
| - | |
50 |
| - | |
51 |
| - | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
52 | 50 |
| |
53 |
| - | |
| 51 | + | |
54 | 52 |
| |
55 | 53 |
| |
56 | 54 |
| |
|
0 commit comments