Skip to content

Commit

Permalink
RM bench-cp: make change in line which will trigger warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericonr committed Jan 15, 2025
1 parent eaee349 commit e287a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/bench-cp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ int main(int argc, char *argv[])
auto tf = std::chrono::high_resolution_clock::now();
auto d = tf - ti;
std::cout << d / 1ms << " ms" << std::endl <<
(double)(s >> 20) / (d / 1.s) << " MB/s" << std::endl;
(double)(s >> 20) / (d / 1.0s) << " MB/s" << std::endl;

return 0;
}

0 comments on commit e287a53

Please sign in to comment.