Made reported elapsed time more precise

This commit is contained in:
uzy lol 2024-10-24 18:37:53 -07:00
parent ab81ce4bc6
commit 5eb70b128b

View File

@ -49,7 +49,7 @@ int main(int argc, char **argv)
std::chrono::duration<double> elapsed = end_time - start_time;
printf("Elapsed time is: %.2f seconds\n", elapsed.count());
printf("Elapsed time is: %.6f seconds\n", elapsed.count());
printf(" Sum result = %lld \n", t);