File tree Expand file tree Collapse file tree 6 files changed +26
-0
lines changed Expand file tree Collapse file tree 6 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ cmake -S . -B ../build.remoting-frontend \
2+ -DGGML_REMOTINGFRONTEND=ON \
3+ -DGGML_CPU_ARM_ARCH=native \
4+ -DGGML_NATIVE=OFF \
5+ -DCMAKE_BUILD_TYPE=Debug \
6+ " $@ "
Original file line number Diff line number Diff line change 1+ cmake -S . -B ./build -DGGML_VULKAN=ON -DGGML_NATIVE=OFF -DGGML_METAL=OFF # -DCMAKE_BUILD_TYPE=Debug #-DGGML_VULKAN_DEBUG=1
Original file line number Diff line number Diff line change 1+ cmake -S . -B ../build.vulkan -DGGML_VULKAN=ON -DGGML_NATIVE=OFF -DGGML_METAL=OFF
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ if [[ ${1:- } == " gdb" ]]; then
4+ prefix=" gdb --args"
5+ else
6+ prefix=" "
7+ fi
8+
9+ MODEL=" $HOME /models/llama3.2"
10+ PROMPT=" say nothing"
11+ $prefix \
12+ ../build.remoting-frontend/bin/llama-run \
13+ --ngl 99 \
14+ --verbose \
15+ " $MODEL " \
16+ " $PROMPT "
Original file line number Diff line number Diff line change 1+ ./build/bin/llama-run --ngl 999 --verbose ~ /models/llama3.2 " say nothing"
Original file line number Diff line number Diff line change 1+ ../build.vulkan/bin/llama-run --ngl 99 --verbose ~ /models/llama3.2 " say nothing"
You can’t perform that action at this time.
0 commit comments