Add missing flag.

This commit is contained in:
Luigi Cruz
2023-07-23 17:14:11 -03:00
committed by GitHub
parent 114d8cfcb6
commit f9da392147
+1 -1
View File
@@ -65,7 +65,7 @@ wget https://karpathy.ai/llama2c/model.bin -P out
Once we have the model.bin file, we can inference in C. Compile the C code first: Once we have the model.bin file, we can inference in C. Compile the C code first:
```bash ```bash
gcc -O3 -o run run.c -lm gcc -O3 -funsafe-math-optimizations -o run run.c -lm
``` ```
You can now run it simply as You can now run it simply as