mirror of
https://github.com/google/benchmark.git
synced 2025-02-07 09:40:17 +08:00
29 lines
493 B
C++
29 lines
493 B
C++
|
|
||
|
#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) {
|
||
|
while (st.KeepRunning()) {
|
||
|
data += 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
BENCHMARK_TEMPLATE_DEFINE_F(MyFixture, Bar, double)(benchmark::State& st) {
|
||
|
while (st.KeepRunning()) {
|
||
|
data += 1.0;
|
||
|
}
|
||
|
}
|
||
|
BENCHMARK_REGISTER_F(MyFixture, Bar);
|
||
|
|
||
|
BENCHMARK_MAIN()
|