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 8a4280c commit 55042b3Copy full SHA for 55042b3
scripts/compare-commits.sh
@@ -25,6 +25,12 @@ fi
25
# verify at the start that the compare script has all the necessary dependencies installed
26
./scripts/compare-llama-bench.py --check
27
28
+if ! command -v sqlite3 >/dev/null 2>&1; then
29
+ echo "Error: sqlite3 is not installed or not in PATH"
30
+ echo "Please install sqlite3 to use this script"
31
+ exit 1
32
+fi
33
+
34
if [ "$tool" = "llama-bench" ]; then
35
db_file="llama-bench.sqlite"
36
target="llama-bench"
0 commit comments