numeric-linalg
Educational material on the SciPy implementation of numerical linear algebra algorithms
File Name | Size | Mode |
Makefile | 440B | -rw-r--r-- |
1 LD_FLAGS=-L../../lapack -L/usr/lib -llapack -lrefblas -ltmglib -lgfortran -lm 2 C_FLAGS=-Wall -Wextra $(LD_FLAGS) 3 4 all: target/runtime target/cache-ratio 5 6 debug: target/runtime-debug target/cache-ratio-debug 7 8 ./target/%: src/%.c src/config.h src/progress-bar.h src/perf.h 9 cc $(firstword $^) -o $@ $(C_FLAGS) -O3 10 11 ./target/%-debug: src/%.c src/config.h src/progress-bar.h src/perf.h 12 cc $(firstword $^) -o $@ $(C_FLAGS) -fsanitize=address -g