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

More aggressive vectorization of Weighted #11

Merged
merged 8 commits into from
Oct 10, 2022
Merged
6 changes: 3 additions & 3 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ ifneq (,$(findstring pgi,$(COMPILER)))
endif
else
ifeq ($(PERFORMING_CONDA_BUILD),True)
CPPFLAGS += -mtune=generic
CPPFLAGS += -mtune=generic -mavx
else
CPPFLAGS += -mfma -march=native
CPPFLAGS += -mavx -mfma -march=native
endif
endif

Expand All @@ -86,7 +86,7 @@ endif
BLASLIB=-llapacke -lcblas


CPPFLAGS += -Wall -std=c++11 -pedantic -I. $(OPT) -fPIC -L$(PREFIX)/lib
CPPFLAGS += -Wall -std=c++14 -pedantic -I. $(OPT) -fPIC -L$(PREFIX)/lib

all: api main install

Expand Down
Loading