From c301a1da444f73ab33b6c502908991bb8f9d5894 Mon Sep 17 00:00:00 2001 From: Josh Ramer Date: Mon, 6 May 2024 09:02:47 -0500 Subject: [PATCH] remove gdb help - not a gdb tutorial --- docs/debugging-tests.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/debugging-tests.md b/docs/debugging-tests.md index 7839ba826..c1c9d8726 100644 --- a/docs/debugging-tests.md +++ b/docs/debugging-tests.md @@ -21,6 +21,4 @@ ctest -R test-tokenizer-0 -V -N # Now that we have the command & arguments needed to run a test, we can debug it with GDB. # I copied the command from the above output, your scenario will be different. gdb --args /home/ubuntu/workspace/llama.cpp/bin/test-tokenizer-0 "/home/ubuntu/workspace/llama.cpp/tests/../models/ggml-vocab-llama-spm.gguf" - -# In case you're struggling after this, GDB can tell you how to use it (>>> help) & it can do incredible things like inspect the variables of any stackframe previous to the current one to help you see what's led to the issue. GDB also makes it easy to revisit a debugging session (see below). ```