#include #include #include void main(int argc, char **argv ) { int i,workers; int *a,*b,*c; int mult=256000; double start, end; workers = omp_get_max_threads(); a = malloc(workers*mult*sizeof(int)); b = malloc(workers*mult*sizeof(int)); c = malloc(workers*mult*sizeof(int)); start = omp_get_wtime(); #pragma omp parallel for for (i=0;i