Commits


xdje42 authored and GitHub committed ebb5e3922dd
Move ProfilerManager Start/Stop routines closer to actual benchmark #1807 (#1818) Previously, the Start/Stop routines were called before the benchmark function was called and after it returned. However, what we really want is for them to be called within the core of the benchmark: for (auto _ : state) { // This is what we want traced, not the entire BM_foo function. }