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

11 lines
441 B
Makefile
Raw Normal View History

2022-11-11 12:23:45 +00:00
-include ../../../utilities/options.mk
-include ../../../utilities/c2.mk
2022-11-16 00:43:59 +00:00
# Do not use EXTRALARGE_DATASET, int will overflow
# -DLARGE_DATASET increases the size of arrays, making everything easier to profile
# -fopenmp enables OpenMP
# -Wall and -Wextra enable more warnings
# -O3 applies all compiler optimization, improving from 800ms to 300ms
# -g3 enables some useful debug things
CFLAGS= -DLARGE_DATASET -fopenmp -Wall -Wextra -O3 -g3