/* bench.c -- Compare LAPACK to simple Gaussian elimination Written September 2014 by Eric Olson When working with large matrices of size 1000 x 1000 or more, LAPACK should run at least 500% faster than the simple Gaussian elimination routine. If this is not the case, you may have a misconfigured version of LAPACK. */ #include #include #include #include #include #include "tictoc.h" #include "solveAx.h" #include "lapacke.h" void mkAb(int n,double A[n][n],double b[n]){ for(int i=0;i