numeric-linalg
Educational material on the SciPy implementation of numerical linear algebra algorithms
File Name | Size | Mode |
Makefile | 430B | -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/benchmarker 5 6 debug: target/benchmarker-debug 7 8 ./target/benchmarker: src/main.c src/config.h src/progress-bar.h src/perf.h 9 cc $(firstword $^) -o $@ $(C_FLAGS) -O3 10 11 ./target/benchmarker-debug: src/main.c src/config.h src/progress-bar.h src/perf.h 12 cc $(firstword $^) -o $@ $(C_FLAGS) -fsanitize=address -g