Skip to content

Commit c937d4a

Browse files
[ci] Remove redundant leading slash in model paths
1 parent 66555c9 commit c937d4a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,14 @@ jobs:
177177
cd ${{ github.workspace }}
178178
export PATH="$TORNADOVM_HOME/bin:$JAVA_HOME/bin:$PATH"
179179
./llama-tornado --gpu --${{ matrix.backend.name }} \
180-
--model /$MODELS_DIR/Phi-3-mini-4k-instruct-fp16.gguf \
180+
--model $MODELS_DIR/Phi-3-mini-4k-instruct-fp16.gguf \
181181
--prompt "Say hello"
182182
- name: FP16 - Run Granite-3.2-2b-instruct-f16.gguf
183183
run: |
184184
cd ${{ github.workspace }}
185185
export PATH="$TORNADOVM_HOME/bin:$JAVA_HOME/bin:$PATH"
186186
./llama-tornado --gpu --${{ matrix.backend.name }} \
187-
--model /$MODELS_DIR/granite-3.2-2b-instruct-f16.gguf \
187+
--model $MODELS_DIR/granite-3.2-2b-instruct-f16.gguf \
188188
--prompt "Say hello"
189189
- name: FP16 - Run Granite-4.0-1b-F16.gguf
190190
run: |

0 commit comments

Comments
 (0)