numeric-linalg
Educational material on the SciPy implementation of numerical linear algebra algorithms
Name | Size | Mode | |
.. | |||
getrf/benchmarks/Makefile | 430B | -rw-r--r-- |
01 02 03 04 05 06 07 08 09 10 11 12
LD_FLAGS=-L../../lapack -L/usr/lib -llapack -lrefblas -ltmglib -lgfortran -lm C_FLAGS=-Wall -Wextra $(LD_FLAGS) all: target/benchmarker debug: target/benchmarker-debug ./target/benchmarker: src/main.c src/config.h src/progress-bar.h src/perf.h cc $(firstword $^) -o $@ $(C_FLAGS) -O3 ./target/benchmarker-debug: src/main.c src/config.h src/progress-bar.h src/perf.h cc $(firstword $^) -o $@ $(C_FLAGS) -fsanitize=address -g