From f9da3921475c030987f36f11bb92333c71349633 Mon Sep 17 00:00:00 2001 From: Luigi Cruz Date: Sun, 23 Jul 2023 17:14:11 -0300 Subject: [PATCH] Add missing flag. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e72fdd7..ad0efb1 100644 --- a/README.md +++ b/README.md @@ -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: ```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