Skip to content

Commit

Permalink
Merge branch 'main' into benchmark_list_tests-work-with-benchmark-for…
Browse files Browse the repository at this point in the history
…mat=json-google#1642
  • Loading branch information
varshneydevansh authored Aug 12, 2023
2 parents a41e9d6 + 1c64a36 commit ecb97ff
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/benchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,7 @@ void State::PauseTiming() {
for (const auto& name_and_measurement : measurements) {
auto name = name_and_measurement.first;
auto measurement = name_and_measurement.second;
BM_CHECK_EQ(std::fpclassify(double{counters[name]}), FP_ZERO);
counters[name] = Counter(measurement, Counter::kAvgIterations);
counters[name] += Counter(measurement, Counter::kAvgIterations);
}
}
}
Expand Down
67 changes: 64 additions & 3 deletions test/perf_counters_test.cc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <cstdarg>
#undef NDEBUG

#include "../src/perf_counters.h"

#include "../src/commandlineflags.h"
#include "../src/perf_counters.h"
#include "benchmark/benchmark.h"
#include "output_test.h"

Expand All @@ -21,17 +21,78 @@ static void BM_Simple(benchmark::State& state) {
BENCHMARK(BM_Simple);
ADD_CASES(TC_JSONOut, {{"\"name\": \"BM_Simple\",$"}});

const int kIters = 1000000;

void BM_WithoutPauseResume(benchmark::State& state) {
int n = 0;

for (auto _ : state) {
for (auto i = 0; i < kIters; ++i) {
n = 1 - n;
benchmark::DoNotOptimize(n);
}
}
}

BENCHMARK(BM_WithoutPauseResume);
ADD_CASES(TC_JSONOut, {{"\"name\": \"BM_WithoutPauseResume\",$"}});

void BM_WithPauseResume(benchmark::State& state) {
int m = 0, n = 0;

for (auto _ : state) {
for (auto i = 0; i < kIters; ++i) {
n = 1 - n;
benchmark::DoNotOptimize(n);
}

state.PauseTiming();
for (auto j = 0; j < kIters; ++j) {
m = 1 - m;
benchmark::DoNotOptimize(m);
}
state.ResumeTiming();
}
}

BENCHMARK(BM_WithPauseResume);

ADD_CASES(TC_JSONOut, {{"\"name\": \"BM_WithPauseResume\",$"}});

static void CheckSimple(Results const& e) {
CHECK_COUNTER_VALUE(e, double, "CYCLES", GT, 0);
CHECK_COUNTER_VALUE(e, double, "BRANCHES", GT, 0.0);
}

double withoutPauseResumeInstrCount = 0.0;
double withPauseResumeInstrCount = 0.0;

static void CheckInstrCount(double* counter, Results const& e) {
BM_CHECK_GT(e.NumIterations(), 0);
*counter = e.GetAs<double>("INSTRUCTIONS") / e.NumIterations();
}

static void CheckInstrCountWithoutResume(Results const& e) {
CheckInstrCount(&withoutPauseResumeInstrCount, e);
}

static void CheckInstrCountWithResume(Results const& e) {
CheckInstrCount(&withPauseResumeInstrCount, e);
}

CHECK_BENCHMARK_RESULTS("BM_Simple", &CheckSimple);
CHECK_BENCHMARK_RESULTS("BM_WithoutPauseResume", &CheckInstrCountWithoutResume);
CHECK_BENCHMARK_RESULTS("BM_WithPauseResume", &CheckInstrCountWithResume);

int main(int argc, char* argv[]) {
if (!benchmark::internal::PerfCounters::kSupported) {
return 0;
}
benchmark::FLAGS_benchmark_perf_counters = "CYCLES,BRANCHES";
benchmark::FLAGS_benchmark_perf_counters = "CYCLES,BRANCHES,INSTRUCTIONS";
benchmark::internal::PerfCounters::Initialize();
RunOutputTests(argc, argv);

BM_CHECK_GT(withPauseResumeInstrCount, kIters);
BM_CHECK_GT(withoutPauseResumeInstrCount, kIters);
BM_CHECK_LT(withPauseResumeInstrCount, 1.5 * withoutPauseResumeInstrCount);
}

0 comments on commit ecb97ff

Please sign in to comment.