You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
482 B
29 lines
482 B
2 years ago
|
|
||
|
#include "benchmark/benchmark.h"
|
||
|
|
||
|
#include <cassert>
|
||
|
#include <memory>
|
||
|
|
||
|
template <typename T>
|
||
|
class MyFixture : public ::benchmark::Fixture {
|
||
|
public:
|
||
|
MyFixture() : data(0) {}
|
||
|
|
||
|
T data;
|
||
|
};
|
||
|
|
||
|
BENCHMARK_TEMPLATE_F(MyFixture, Foo, int)(benchmark::State& st) {
|
||
|
for (auto _ : st) {
|
||
|
data += 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
BENCHMARK_TEMPLATE_DEFINE_F(MyFixture, Bar, double)(benchmark::State& st) {
|
||
|
for (auto _ : st) {
|
||
|
data += 1.0;
|
||
|
}
|
||
|
}
|
||
|
BENCHMARK_REGISTER_F(MyFixture, Bar);
|
||
|
|
||
|
BENCHMARK_MAIN();
|