Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/benchmark
Submodule benchmark updated 88 files
+1 −1 .github/workflows/pre-commit.yml
+2 −2 .github/workflows/wheels.yml
+22 −0 BUILD.bazel
+2 −1 README.md
+11 −2,097 include/benchmark/benchmark.h
+292 −0 include/benchmark/benchmark_api.h
+80 −0 include/benchmark/counter.h
+136 −0 include/benchmark/macros.h
+66 −0 include/benchmark/managers.h
+258 −0 include/benchmark/registration.h
+238 −0 include/benchmark/reporter.h
+265 −0 include/benchmark/state.h
+65 −0 include/benchmark/statistics.h
+71 −0 include/benchmark/sysinfo.h
+50 −0 include/benchmark/types.h
+152 −0 include/benchmark/utils.h
+5 −2 src/benchmark.cc
+3 −1 src/benchmark_api_internal.h
+2 −1 src/benchmark_main.cc
+2 −1 src/benchmark_name.cc
+5 −1 src/benchmark_register.cc
+5 −1 src/benchmark_runner.cc
+4 −1 src/colorprint.cc
+3 −1 src/complexity.cc
+2 −1 src/complexity.h
+6 −4 src/console_reporter.cc
+6 −5 src/counter.h
+2 −1 src/csv_reporter.cc
+1 −1 src/cycleclock.h
+4 −1 src/json_reporter.cc
+4 −1 src/perf_counters.h
+13 −10 src/reporter.cc
+3 −1 src/statistics.cc
+2 −1 src/statistics.h
+37 −31 src/string_util.cc
+1 −1 src/string_util.h
+3 −1 src/sysinfo.cc
+3 −1 src/thread_manager.h
+3 −3 test/CMakeLists.txt
+4 −1 test/args_product_test.cc
+4 −1 test/basic_test.cc
+3 −3 test/benchmark_gtest.cc
+4 −1 test/benchmark_min_time_flag_iters_test.cc
+4 −1 test/benchmark_min_time_flag_time_test.cc
+1 −1 test/benchmark_name_gtest.cc
+4 −1 test/benchmark_random_interleaving_gtest.cc
+4 −1 test/benchmark_setup_teardown_cb_types_gtest.cc
+3 −1 test/benchmark_setup_teardown_test.cc
+4 −2 test/benchmark_test.cc
+2 −1 test/clobber_memory_assembly_test.cc
+6 −1 test/complexity_test.cc
+1 −1 test/cxx11_test.cc
+4 −1 test/diagnostics_test.cc
+3 −1 test/display_aggregates_only_test.cc
+2 −1 test/donotoptimize_assembly_test.cc
+2 −1 test/donotoptimize_test.cc
+4 −1 test/filter_test.cc
+3 −1 test/fixture_test.cc
+4 −1 test/internal_threading_test.cc
+3 −1 test/link_main_test.cc
+3 −1 test/locale_impermeability_test.cc
+4 −1 test/manual_threading_test.cc
+4 −1 test/map_test.cc
+5 −1 test/memory_manager_test.cc
+4 −1 test/memory_results_gtest.cc
+4 −1 test/multiple_ranges_test.cc
+4 −1 test/options_test.cc
+1 −1 test/output_test.h
+3 −1 test/overload_test.cc
+4 −1 test/perf_counters_test.cc
+4 −1 test/profiler_manager_gtest.cc
+5 −1 test/profiler_manager_iterations_test.cc
+5 −1 test/profiler_manager_test.cc
+4 −1 test/register_benchmark_test.cc
+3 −1 test/repetitions_test.cc
+3 −1 test/report_aggregates_only_test.cc
+7 −1 test/reporter_output_test.cc
+5 −1 test/skip_with_error_test.cc
+4 −1 test/spec_arg_test.cc
+3 −1 test/spec_arg_verbosity_test.cc
+2 −1 test/state_assembly_test.cc
+3 −1 test/templated_fixture_method_test.cc
+3 −1 test/templated_fixture_test.cc
+2 −1 test/time_unit_gtest.cc
+5 −1 test/user_counters_tabular_test.cc
+5 −1 test/user_counters_test.cc
+4 −1 test/user_counters_thousands_test.cc
+4 −1 test/user_counters_threads_test.cc
Loading