#include "test.h"
#include "utils.h"
#include <benchmark/benchmark.h>
Go to the source code of this file.
◆ BENCHMARK() [1/3]
◆ BENCHMARK() [2/3]
◆ BENCHMARK() [3/3]
◆ BM_to_series()
| void BM_to_series |
( |
benchmark::State & | state | ) |
|
Definition at line 5 of file test.cxx.
5 {
6 for (auto _ : state)
8}
std::vector< std::vector< double > > to_series(const std::string csv)
Open a CSV file and return a vector of floating points for each row.
◆ BM_to_series3()
| void BM_to_series3 |
( |
benchmark::State & | state | ) |
|
Definition at line 10 of file test.cxx.
10 {
11 for (auto _ : state)
13}
std::vector< std::vector< double > > to_series3(const std::string &csv)
Open a CSV file and return a vector of floating points for each row.
◆ BM_to_series4()
| void BM_to_series4 |
( |
benchmark::State & | state | ) |
|
Definition at line 15 of file test.cxx.
15 {
16 for (auto _ : state)
18}
std::vector< std::vector< double > > to_series4(const std::string &csv)
Open a CSV file and return a vector of floating points for each row.