summaryrefslogtreecommitdiff
path: root/SpMV/baselines/cpu
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2024-12-06 15:13:20 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2024-12-06 15:13:20 +0100
commitd83216682e335ddafeb6d0787e12f6ec667f0b3f (patch)
treef3ab551df939987466f0730db192f23da5d5d161 /SpMV/baselines/cpu
parentf0d1016744e802b5b682960c8bf6e03bd02301ca (diff)
BFS, MLP, SpMV, UNI: compile baselines with -march=native
Diffstat (limited to 'SpMV/baselines/cpu')
-rw-r--r--SpMV/baselines/cpu/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/SpMV/baselines/cpu/Makefile b/SpMV/baselines/cpu/Makefile
index 64b20db..5b2367b 100644
--- a/SpMV/baselines/cpu/Makefile
+++ b/SpMV/baselines/cpu/Makefile
@@ -1,7 +1,7 @@
all: spmv
spmv: app.c
- gcc -O2 -o spmv -fopenmp app.c
+ gcc -Wall -Wextra -pedantic -march=native -O2 -o spmv -fopenmp app.c
spmv_O0: app.c
gcc -o spmv_O0 -fopenmp app.c