Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
bin_PROGRAMS = nttest
bin_PROGRAMS = nttest nttest_avx

nttest_CPPFLAGS = -I$(top_srcdir)/lib

nttest_avx_CPPFLAGS = --std=c++11 -march=sandybridge -mavx512f -mavx512bw -mavx512vl -I$(top_srcdir)/lib

nttest_SOURCES = \
lib/BloomFilter.hpp \
lib/city.cc \
Expand All @@ -15,6 +17,11 @@ nttest_SOURCES = \
ntHashIterator.hpp \
nttest.cpp

nttest_avx_SOURCES = \
nthash.hpp \
nthash_avx.hpp \
nttest_avx.cpp

dist_doc_DATA = \
ChangeLog \
CITATION.bib \
Expand Down
Loading