Tim Oelkers

Results 4 comments of Tim Oelkers

Sorry, problem is not related to custom counters (at least I think). In the following code snipped, how can I report statistics for the whole "BM_Test" benchmark? It calls the...

Doesn´t work unfortunately. I think the problem is, that each thread gets treated as an individual benchmark internally. The context of which original benchmark they belong to is lost. The...

For convenience, a project is available at [https://github.com/Tasemo/benchmark-issue-1604](https://github.com/Tasemo/benchmark-issue-1604). Code snippet ```cpp #include #include static void BM_StringCopy(benchmark::State& state) { std::string x = "hello"; for (auto _ : state) { std::string copy(x);...

No, I need the separate per-thread values in one place. I don´t see another way. The value of one run is dependent on the value of another. If this feature...