numeric-linalg

Educational material on the SciPy implementation of numerical linear algebra algorithms

File Name Size Mode
config.h 417B -rw-r--r--
 1 /*
 2  * The number of tests for each size of matrix
 3  */
 4 #define N_TESTS 1
 5 
 6 /*
 7  * The biggest possible size of the input matrix
 8  */
 9 #define MAX_N 5000
10 
11 /*
12  * The number of threads in which the benchmarks will be distributed
13  */
14 #define N_THREADS 8
15 
16 /*
17  * The interval between successive terms in the histogram
18  */
19 #define STEP 100
20 
21 /*
22  * Directory where the histograms will be stored at
23  */
24 #define OUTPUT_DIR "output/"