numeric-linalg
Educational material on the SciPy implementation of numerical linear algebra algorithms
File Name | Size | Mode |
config.h | 453B | -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 #define CACHE_RATIO_PRECISION 1000 22 23 /* 24 * Directory where the histograms will be stored at 25 */ 26 #define OUTPUT_DIR "output/"