mtzikara
6 years ago
committed by
GitHub
1 changed files with 0 additions and 44 deletions
@ -1,44 +0,0 @@ |
|||||
#include <sys/time.h> |
|
||||
|
|
||||
#include "serial_gs_pagerank_functions.h" |
|
||||
//#include "coo_sparse_matrix.h"
|
|
||||
|
|
||||
struct timeval startwtime, endwtime; |
|
||||
double seq_time; |
|
||||
|
|
||||
int main(int argc, char **argv) { |
|
||||
CsrSparseMatrix transitionMatrix = initCsrSparseMatrix(); |
|
||||
double *pagerankVector; |
|
||||
bool convergenceStatus; |
|
||||
Parameters parameters; |
|
||||
|
|
||||
parseArguments(argc, argv, ¶meters); |
|
||||
|
|
||||
initialize(&transitionMatrix, &pagerankVector, ¶meters); |
|
||||
|
|
||||
// Starts wall-clock timer
|
|
||||
gettimeofday (&startwtime, NULL); |
|
||||
|
|
||||
int iterations = pagerank(&transitionMatrix, &pagerankVector, |
|
||||
&convergenceStatus, parameters); |
|
||||
if (parameters.verbose) { |
|
||||
printf(ANSI_COLOR_YELLOW "\n----- RESULTS -----\n" ANSI_COLOR_RESET); |
|
||||
if (convergenceStatus) { |
|
||||
printf(ANSI_COLOR_GREEN "Pagerank converged after %d iterations!\n" \ |
|
||||
ANSI_COLOR_RESET, iterations); |
|
||||
} else { |
|
||||
printf(ANSI_COLOR_RED "Pagerank did not converge after max number of" \ |
|
||||
" iterations (%d) was reached!\n" ANSI_COLOR_RESET, iterations); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// Stops wall-clock timer
|
|
||||
gettimeofday (&endwtime, NULL); |
|
||||
double seq_time = (double)((endwtime.tv_usec - startwtime.tv_usec)/1.0e6 + |
|
||||
endwtime.tv_sec - startwtime.tv_sec); |
|
||||
printf("%s wall clock time = %f\n","Pagerank (Gauss-Seidel method), serial implementation", |
|
||||
seq_time); |
|
||||
|
|
||||
free(pagerankVector); |
|
||||
destroyCsrSparseMatrix(&transitionMatrix); |
|
||||
} |
|
Loading…
Reference in new issue