We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b42a8 commit 5049b2fCopy full SHA for 5049b2f
run.vulkan.sh
@@ -1 +1,10 @@
1
-../build.vulkan/bin/llama-run --ngl 99 --verbose ~/models/llama3.2 "say nothing"
+#! /bin/bash
2
+
3
+if [[ ${1:-} == "gdb" ]]; then
4
+ prefix="gdb --args"
5
+else
6
+ prefix=""
7
+fi
8
9
+export VN_DEBUG=init
10
+$prefix ../build.vulkan/bin/llama-run --ngl 99 --verbose ~/models/llama3.2 "say nothing"
0 commit comments