Skip to content

Commit b6da097

Browse files
committed
[CI] Add new model test cases to build-and-run workflow
1 parent 77250e8 commit b6da097

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/build-and-run.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,24 @@ jobs:
9595
./llama-tornado --gpu --opencl \
9696
--model /opt/models/Qwen3-4B-f16.gguf \
9797
--prompt "Say hello"
98+
- name: Run Mistral-7B-Instruct-v0.3.fp16.gguf
99+
run: |
100+
set -x
101+
cd ${{ github.workspace }}
102+
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
103+
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
104+
./llama-tornado --gpu --opencl \
105+
--model /opt/models/Mistral-7B-Instruct-v0.3.fp16.gguf \
106+
--prompt "Say hello"
107+
- name: Run Qwen2.5-1.5b-instruct-fp16.gguf
108+
run: |
109+
set -x
110+
cd ${{ github.workspace }}
111+
export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
112+
which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
113+
./llama-tornado --gpu --opencl \
114+
--model /opt/models/qwen2.5-1.5b-instruct-fp16.gguf \
115+
--prompt "Say hello"
98116
# - name: Run Llama-3.2-1B-Instruct-Q8_0.gguf
99117
# run: |
100118
# set -x

0 commit comments

Comments
 (0)