using the new function_timer library

This commit is contained in:
Krishna Vedala 2020-04-07 00:24:40 -04:00
parent d24b6ea344
commit 2d9d2d87fe
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7

View File

@ -1,10 +1,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#ifdef _OPENMP
#include <omp.h>
#endif
#include "function_timer.h"
unsigned long MAX_N = 28123;
@ -91,26 +91,28 @@ int main(int argc, char **argv)
printf("Not using parallleization!\n");
#endif
clock_t dt = 0;
double total_duration = 0;
function_timer *timer = new_timer();
#ifdef _OPENMP
#pragma omp parallel for reduction(+ \
: sum) schedule(runtime)
#endif
for (unsigned long i = 1; i <= MAX_N; i++)
{
clock_t start_time = clock();
start_timer(timer);
if (!is_sum_of_abundant(i))
sum += i;
clock_t end_time = clock();
dt += end_time - start_time;
total_duration += end_timer(timer);
printf("... %5lu: %8lu\r", i, sum);
if (i % 100 == 0)
fflush(stdout);
}
printf("Time taken: %.4g ms\n", 1e3 * dt / CLOCKS_PER_SEC);
printf("Time taken: %.4g s\n", total_duration);
printf("Sum of numbers that cannot be represented as sum of two abundant numbers : %lu\n", sum);
delete_timer(timer);
return 0;
}