From 1256bdbd437b3fc551e3a26093d16a0051e75555 Mon Sep 17 00:00:00 2001
From: Incardona Pietro <incardon@mpi-cbg.de>
Date: Thu, 2 Dec 2021 03:53:53 +0100
Subject: [PATCH] Removing fast math

---
 example/Performance/miniBUDE/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/example/Performance/miniBUDE/Makefile b/example/Performance/miniBUDE/Makefile
index f033e944f..5ee012e94 100644
--- a/example/Performance/miniBUDE/Makefile
+++ b/example/Performance/miniBUDE/Makefile
@@ -42,7 +42,7 @@ OBJ = main.o
 miniBUDE:
 
 %.o: %.cu
-	$(CUDA_CC) -O3 -ffast-math $(CUDA_OPTIONS) $(OPT) -c --std=c++14 -o $@ $< $(INCLUDE_PATH_NVCC)
+	$(CUDA_CC) -O3 $(CUDA_OPTIONS) $(OPT) -c --std=c++14 -o $@ $< $(INCLUDE_PATH_NVCC)
 
 %.o: %.cpp
 	$(CC) -O3 $(OPT) -g -c --std=c++14 -o $@ $< $(INCLUDE_PATH)
-- 
GitLab