-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (17 loc) · 1.17 KB
/
Makefile
File metadata and controls
25 lines (17 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
all: simu
simu: main.cpp
c++ -O3 -funroll-loops -fomit-frame-pointer -ffast-math -march=native -o simu main.cpp -std=c++17 -lpthread
simud: main.cpp
c++ -g -o simud -fsanitize=address main.cpp -std=c++17 -lpthread
simus: main-stableswap.cpp
c++ -O3 -funroll-loops -fomit-frame-pointer -ffast-math -march=native -o simus main-stableswap.cpp -std=c++17 -lpthread
simudyn: main-stableswap-dynrate.cpp
c++ -O3 -funroll-loops -fomit-frame-pointer -ffast-math -march=native -o simudyn main-stableswap-dynrate.cpp -std=c++17 -lpthread
simudyn-lpf: main-stableswap-dynrate-lpf.cpp
c++ -O3 -funroll-loops -fomit-frame-pointer -ffast-math -march=native -o simudyn-lpf main-stableswap-dynrate-lpf.cpp -std=c++17 -lpthread
simuy1: main-stableswap-ybv1.cpp
c++ -O3 -funroll-loops -fomit-frame-pointer -ffast-math -march=native -o simuy1 main-stableswap-ybv1.cpp -std=c++17 -lpthread
simul: main-legacy.cpp
c++ -O3 -funroll-loops -fomit-frame-pointer -ffast-math -march=native -o simul main-legacy.cpp -std=c++17 -lpthread
simusl: main-stableswap-legacy.cpp
c++ -O3 -funroll-loops -fomit-frame-pointer -ffast-math -march=native -o simusl main-stableswap-legacy.cpp -std=c++17 -lpthread