Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AVX2 and AVX512 implementations for ntHash #9

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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