From a414eeac386ce474d297404342ca221b536b185c Mon Sep 17 00:00:00 2001 From: Josh Davis Date: Thu, 22 Jun 2023 16:59:24 -0400 Subject: [PATCH] Enable OACC by default --- openacc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openacc/Makefile b/openacc/Makefile index 51a0bbd4..35690285 100644 --- a/openacc/Makefile +++ b/openacc/Makefile @@ -7,7 +7,7 @@ OPTIMIZE = yes DEBUG = yes PROFILE = no MPI = no -OPENACC = no +OPENACC = yes #=============================================================================== # Program name & source code list @@ -47,7 +47,7 @@ ifeq ($(COMPILER),pgi) endif # OpenACC (assumes NVIDA GPU) ifeq ($(OPENACC),yes) - CFLAGS += -acc -Minfo=accel -gpu=cc80 + CFLAGS += -acc -Minfo=accel -gpu=cc70 endif endif