From c8bad2ce77dc625e96028732029ad8b08a9df366 Mon Sep 17 00:00:00 2001 From: Paul Nation Date: Fri, 25 Oct 2024 13:54:44 -0400 Subject: [PATCH] add fast-math to compiler flags --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index e356dd1..9b0345b 100644 --- a/setup.py +++ b/setup.py @@ -84,6 +84,7 @@ else: COMPILER_FLAGS = [ "-O3", + "-ffast-math", "-std=c++17", "-DNPY_NO_DEPRECATED_API=NPY_1_23_API_VERSION", ]