Skip to content

Instantly share code, notes, and snippets.

@lettergram
Created March 19, 2015 00:53
Show Gist options
  • Save lettergram/ebcda66f4cd490cad0c4 to your computer and use it in GitHub Desktop.
Save lettergram/ebcda66f4cd490cad0c4 to your computer and use it in GitHub Desktop.
double good_openmp_cache_opt(int ** matrix, long int size, int blocksize){
double total_begin = omp_get_wtime();
#pragma omp parallel for
for(int x = 0; x < size; x++){
for(int y = 0; y < size; y++){
matrix[x][y] = matrix[x][y] * 2;
}
}
double total_end = omp_get_wtime();
return double(total_end - total_begin);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment