diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-12-06 15:13:20 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-12-06 15:13:20 +0100 |
commit | d83216682e335ddafeb6d0787e12f6ec667f0b3f (patch) | |
tree | f3ab551df939987466f0730db192f23da5d5d161 /BFS/baselines | |
parent | f0d1016744e802b5b682960c8bf6e03bd02301ca (diff) |
BFS, MLP, SpMV, UNI: compile baselines with -march=native
Diffstat (limited to 'BFS/baselines')
-rw-r--r-- | BFS/baselines/cpu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BFS/baselines/cpu/Makefile b/BFS/baselines/cpu/Makefile index 6f082b1..1f6ed3c 100644 --- a/BFS/baselines/cpu/Makefile +++ b/BFS/baselines/cpu/Makefile @@ -2,7 +2,7 @@ all: bfs bfs: app.c - gcc -O2 -o bfs -fopenmp app.c + gcc -Wall -Wextra -pedantic -march=native -O2 -o bfs -fopenmp app.c bfs_O0: app.c gcc -o bfs_O0 -fopenmp app.c |