Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion core/src/walltime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ void generate_codspeed_walltime_report(

double total_time =
std::accumulate(raw_benchmark.round_times_ns.begin(),
raw_benchmark.round_times_ns.end(), 0.0);
raw_benchmark.round_times_ns.end(), 0.0) /
1e9;

double mean = raw_benchmark.mean_ns;
double median = raw_benchmark.median_ns;
Expand Down