Merge pull request #72 from Soldy/master

-O3 cannot go with -Ofast
This commit is contained in:
Andrej 2024-04-11 08:38:57 -07:00 committed by GitHub
commit f46d5b2e2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -43,7 +43,7 @@ You can have a look inside the `Makefile` and its comments. It will try to autod
```
# try this first
CFLAGS = -O3 -Ofast -fno-fast-math -Wno-unused-result
CFLAGS = -Ofast -fno-fast-math -Wno-unused-result
# try this second
CFLAGS = -O3 -Wno-unused-result
```
@ -170,4 +170,4 @@ The time drops down to 26ms/iteration. So we have a gap to close :)! At the curr
## license
MIT
MIT