From 9805b0742d0387c69d40ec21414c762c5291b426 Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Thu, 8 Dec 2011 14:36:09 -0800 Subject: [PATCH] Switch to avx-x2 for the stencil workload --- examples/stencil/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/stencil/Makefile b/examples/stencil/Makefile index b479cc32..2263d57a 100644 --- a/examples/stencil/Makefile +++ b/examples/stencil/Makefile @@ -8,7 +8,7 @@ TASK_OBJ=$(addprefix objs/, $(subst ../,, $(TASK_CXX:.cpp=.o))) CXX=g++ CXXFLAGS=-Iobjs/ -O3 -Wall -m64 ISPC=ispc -ISPCFLAGS=-O2 --target=sse2,sse4-x2,avx --arch=x86-64 +ISPCFLAGS=-O2 --target=sse2,sse4-x2,avx-x2 --arch=x86-64 OBJS=objs/stencil.o objs/stencil_serial.o $(TASK_OBJ) objs/stencil_ispc.o \ objs/stencil_ispc_sse2.o objs/stencil_ispc_sse4.o \