Skip to content

Commit

Permalink
Removed fast-math compiler flag in setup.py
Browse files Browse the repository at this point in the history
- Fixes #6
  • Loading branch information
ianmkenney committed Aug 24, 2023
1 parent a00b6ed commit 934e1ac
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@


def extensions(debug=False, use_cython=True):
# TODO: remove fast-math?
encore_compile_args = ['-std=c99', '-ffast-math', '-funroll-loops',
'-fsigned-zeros']
encore_compile_args = ['-std=c99', '-funroll-loops', '-fsigned-zeros']

cython_linetrace = bool(os.environ.get('CYTHON_TRACE_NOGIL', False))

Expand Down

0 comments on commit 934e1ac

Please sign in to comment.