| 19 | using PointsMatrix3D = Eigen::Matrix<double, Eigen::Dynamic, 3, Eigen::RowMajor>; |
| 20 | |
| 21 | struct BenchmarkStats |
| 22 | { |
| 23 | double mean_us = 0.0; |
| 24 | double std_us = 0.0; |
| 25 | double min_us = 0.0; |
| 26 | }; |
| 27 | |
| 28 | template <typename Func> |
| 29 | BenchmarkStats runBenchmark(const Func &func, int iters, int repeats = 7, int warmup_iters = 200) |
nothing calls this directly
no outgoing calls
no test coverage detected