Skip to content

Commit

Permalink
Merge pull request #11 from sfiligoi/igor_cpu_vect2210b
Browse files Browse the repository at this point in the history
More aggressive vectorization of Weighted
  • Loading branch information
sfiligoi authored Oct 10, 2022
2 parents 539e313 + 42460d8 commit 10d3b8a
Show file tree
Hide file tree
Showing 3 changed files with 172 additions and 166 deletions.
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

0 comments on commit 10d3b8a

Please sign in to comment.