mirror of
https://github.com/karpathy/llm.c.git
synced 2026-07-28 20:35:09 -04:00
-O3 cannot go with -Ofast
Signed-off-by: soldy <4786022+soldy@users.noreply.github.com>
This commit is contained in:
parent
a08c11b60e
commit
3aaed922a3
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue