From 682d161b16226caa028e835d9dd5f315b56b8e87 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 28 Nov 2022 16:10:47 +0100 Subject: [PATCH] Remove -Wall and -Wextra They do not exist in nvcc --- OpenMP/linear-algebra/kernels/atax/Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/OpenMP/linear-algebra/kernels/atax/Makefile b/OpenMP/linear-algebra/kernels/atax/Makefile index 5975e40..3e0c451 100644 --- a/OpenMP/linear-algebra/kernels/atax/Makefile +++ b/OpenMP/linear-algebra/kernels/atax/Makefile @@ -1,8 +1,5 @@ # -DPOLYBENCH_TIME makes Polybench output the execution time of the program -CXXFLAGS+= -DPOLYBENCH_TIME -# -Wall and -Wextra enable more warnings -CXXFLAGS+= -Wall -CXXFLAGS+= -Wextra +CXXFLAGS+= -DPOLYBENCH_TIME # -O3 applies all compiler optimization, improving from 800ms to 300ms CXXFLAGS+= -O3 # Extend CFLAGS with command line parameters