// Call LAPACKE_dgesv info = LAPACKE_dgesv(LAPACK_ROW_MAJOR, n, nrhs, M, lda, ipiv, V, ldb); if(info){ exit(-1); } // Record the end time clock_t end = clock();
// Calculate the elapsed time in seconds double elapsed_time = (end - start) / (double)CLOCKS_PER_SEC;
printf("Solution to the system of linear equations:"); for (int i = 0; i < N; i++) { printf("\nx[%d] = %f", i, V[i]); } printf("\nElapsed time: %e s\n", elapsed_time); printf("\n"); return0; }