mirror of
https://github.com/xythrez/RustMP.git
synced 2025-04-20 02:03:30 +00:00
Fixed elapsed time formatting for omp benchmarks
This commit is contained in:
parent
b6ee94515e
commit
7de0994fde
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ print_time_diff (struct timespec *start, struct timespec *end)
|
||||||
nsec += 1000000000;
|
nsec += 1000000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf ("Elapsed time: %ld.%09ld sec\n", sec, nsec);
|
printf ("Elapsed time: %ld.%09lds\n", sec, nsec);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Add table
Reference in a new issue