-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4283aea
commit d23eb36
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule benchmark
updated
30 files
+1 −1 | .github/workflows/build-and-test-min-cmake.yml | |
+1 −1 | .github/workflows/build-and-test-perfcounters.yml | |
+3 −3 | .github/workflows/build-and-test.yml | |
+1 −1 | .github/workflows/clang-format-lint.yml | |
+1 −1 | .github/workflows/clang-tidy.yml | |
+1 −1 | .github/workflows/doxygen.yml | |
+1 −1 | .github/workflows/sanitizer.yml | |
+1 −1 | .github/workflows/wheels.yml | |
+2 −2 | .pre-commit-config.yaml | |
+0 −208 | .travis.yml | |
+3 −3 | BUILD.bazel | |
+3 −7 | CMakeLists.txt | |
+1 −0 | CONTRIBUTORS | |
+1 −1 | MODULE.bazel | |
+4 −6 | README.md | |
+4 −0 | cmake/Config.cmake.in | |
+1 −1 | cmake/benchmark.pc.in | |
+25 −5 | docs/user_guide.md | |
+20 −0 | include/benchmark/benchmark.h | |
+2 −1 | src/CMakeLists.txt | |
+4 −0 | src/benchmark.cc | |
+43 −16 | src/benchmark_runner.cc | |
+5 −0 | src/benchmark_runner.h | |
+3 −2 | src/cycleclock.h | |
+2 −1 | src/perf_counters.cc | |
+4 −4 | src/sysinfo.cc | |
+10 −2 | src/timers.cc | |
+28 −1 | src/timers.h | |
+3 −0 | test/CMakeLists.txt | |
+43 −0 | test/profiler_manager_test.cc |