From 69564f5750a9966cd66e6de52c77f74eb3bae940 Mon Sep 17 00:00:00 2001 From: Florian Stecker Date: Sun, 3 Feb 2019 13:13:54 +0100 Subject: [PATCH] copy .gitignore and remove unnecessary mtune option --- .gitignore | 6 ++++++ Makefile | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f47d23 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +*.o +enumerate +idealbounds +graph +D2n +dominant_weights diff --git a/Makefile b/Makefile index 2e269b1..00946a3 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ HEADERS=weyl.h thickenings.h queue.h bitvec.h #SPECIAL_OPTIONS=-O3 -pg -funroll-loops -fno-inline SPECIAL_OPTIONS=-O3 -flto -funroll-loops -Winline -OPTIONS=-m64 -march=native -mtune=native -std=gnu99 -D_GNU_SOURCE $(SPECIAL_OPTIONS) +OPTIONS=-m64 -march=native -std=gnu99 -D_GNU_SOURCE $(SPECIAL_OPTIONS) NAME=enumerate-balanced-ideals all: enumerate graph D2n dominant_weights