We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 789fb65 commit e18854cCopy full SHA for e18854c
core/include/codspeed.h
@@ -1,6 +1,7 @@
1
#ifndef CODSPEED_H
2
#define CODSPEED_H
3
4
+#include <cstdint>
5
#include <string>
6
#include <vector>
7
@@ -33,7 +34,7 @@ class CodSpeed {
33
34
struct RawWalltimeBenchmark {
35
std::string name;
36
std::string uri;
- long iter_per_round;
37
+ int64_t iter_per_round;
38
double mean_ns;
39
double median_ns;
40
double stdev_ns;
core/src/walltime.cpp
@@ -31,7 +31,7 @@ struct BenchmarkStats {
31
double total_time;
32
uint64_t iqr_outlier_rounds;
uint64_t stdev_outlier_rounds;
uint64_t warmup_iters;
};
0 commit comments