#include "trace.h" #include "common.h" #include /* This routine performs the LU factorization of a square matrix by block-columns */ void lu_par_loop(Matrix A, info_type info){ int i, j; /* Initialize the tracing system */ trace_init(); /* openMP magic stuff */ #pragma omp parallel private(i) for(i=0; i