update makefile to use correct arg call after our argparse update

This commit is contained in:
Andrej Karpathy
2023-08-05 23:11:11 +00:00
parent a1037d79ee
commit 49e3ff6d08
+1 -1
View File
@@ -8,7 +8,7 @@ run: run.c
$(CC) -O3 -o run run.c -lm
# useful for a debug build, can then e.g. analyze with valgrind, example:
# $ valgrind --leak-check=full ./run out/model.bin 1.0 3
# $ valgrind --leak-check=full ./run out/model.bin -n 3
rundebug: run.c
$(CC) -g -o run run.c -lm