We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d431226 commit 1944e38Copy full SHA for 1944e38
1 file changed
.github/workflows/build-and-run.yml
@@ -104,6 +104,14 @@ jobs:
104
./llama-tornado --gpu --opencl \
105
--model /opt/models/qwen2.5-1.5b-instruct-fp16.gguf \
106
--prompt "Say hello"
107
+ - name: Run Phi-3-mini-4k-instruct-fp16.gguf
108
+ run: |
109
+ cd ${{ github.workspace }}
110
+ export PATH="$TORNADO_SDK/bin:$JAVA_HOME/bin:$PATH"
111
+ which tornado || { echo "::error::tornado not found at runtime"; exit 1; }
112
+ ./llama-tornado --gpu --opencl \
113
+ --model /opt/models/Phi-3-mini-4k-instruct-fp16.gguf \
114
+ --prompt "Say hello"
115
# - name: Run Llama-3.2-1B-Instruct-Q8_0.gguf
116
# run: |
117
# set -x
0 commit comments