1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-23 08:34:23 +00:00
hpc-2022-g3/OpenMP/linear-algebra/kernels/atax/Makefile

18 lines
No EOL
592 B
Makefile

-include ../../../utilities/options.mk
-include ../../../utilities/c2.mk
# -DPOLYBENCH_TIME makes Polybench output the execution time of the program
CFLAGS+= -DPOLYBENCH_TIME
# -DLARGE_DATASET increases the size of arrays, making everything easier to profile
# Do not use EXTRALARGE_DATASET, int will overflow
CFLAGS+= -DLARGE_DATASET
# -Wall and -Wextra enable more warnings
CFLAGS+= -Wall
CFLAGS+= -Wextra
# -O3 applies all compiler optimization, improving from 800ms to 300ms
CFLAGS+= -O3
# -g3 enables some useful debug things
CFLAGS+= -g3
# Disable make output
MAKEFLAGS+= --silent