benchmark icon indicating copy to clipboard operation
benchmark copied to clipboard

A microbenchmark support library

Results 181 benchmark issues
Sort by recently updated
recently updated
newest added

googlebenchmark\src\benchmark_runner.cc(267): warning C4244: 'initializing': conversion from 'double' to 'benchmark::IterationCount', possible loss of data googlebenchmark\src\benchmark_runner.cc(267): warning C4244: 'initializing': conversion from 'double' to 'const benchmark::IterationCount', possible loss of data d:\thirdparty\trunk\googlebenchmark\test\statistics_gtest.cc(25): warning C4305:...

bug
good first issue
help wanted
os:windows

https://github.com/google/benchmark#running-a-subset-of-benchmarks As shown in the readme.md, https://github.com/google/benchmark/blame/master/README.md#L424 The benchmark name contains the state.range values as human readable format. (eg. `32k`) But the current code does not provide any switches or...

enhancement
good first issue
help wanted

I want to measure memory usage of a multithread C++ code by calling RegisterMemoryManager, but gets variable metrics every time I run the code. Is the benchmark memory manager designed...

**Intro** I was trying to measure the performance impact of a single cache miss while reading the middle element of an array containing 1,000,000 integers. It required 0.437 ns according...

enhancement
help wanted

Currently, we claim to support `g++-4.8` and `clang-3.4` as minimum compiler versions (among others). [Googletest](https://github.com/google/googletest), on which we depend for testing (but not in general) increased their minimum support to...

**Describe the bug** ```shell ❯ bazel build //test/... WARNING: /usr/home/yesudeep/.cache/bazel/_bazel_yesudeep/ffbd632d168ee0cddab7ac9029ce644e/external/remote_java_tools_linux/BUILD:671:11: in hdrs attribute of cc_library rule @remote_java_tools_linux//:combiners: Artifact 'external/remote_java_tools_linux/java_tools/src/tools/singlejar/zip_headers.h' is duplicated (through '@remote_java_tools_linux//:transient_bytes' and '@remote_java_tools_linux//:zip_headers'). Since this rule was created...

bug
help wanted

**Is your feature request related to a problem? Please describe.** There are some differences in how repetitions are handled. For family repetitions (the ones hardcoded in the code with `BENCHMARK(bench)->Repetitions(X)`),...

enhancement

**Describe the bug** Benchmarks fixture don't seem to run unless in debug with breakpoints **System** - OS: Windows 10 x64 - Compiler and version: msvc 19.16.27034 x32/x64 (both) **To reproduce**...

**Is your feature request related to a problem? Please describe.** A good implementation of a reciprocal square root should scale at nlog(n) in the number of mantissa bits. So I...

enhancement

**Describe the bug** We are using clang 8 with libc++ with libc++'s thread annotation enabled by `-D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS` globally. However, it conflicts with benchmark's mutex wrapper's thread annotation. **System** Which OS,...

bug
good first issue
help wanted