numeric-linalg

Educational material on the SciPy implementation of numerical linear algebra algorithms

config.h (329B)

 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 10000
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