Skip to content

Commit 0bb2a3f

Browse files
author
Olivier Chafik
committed
fix some missing -cli suffixes
1 parent daeaeb1 commit 0bb2a3f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.devops/llama-cuda.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ENV CUDA_DOCKER_ARCH=${CUDA_DOCKER_ARCH}
2323
# Enable CUDA
2424
ENV LLAMA_CUDA=1
2525

26-
RUN make -j$(nproc) llama
26+
RUN make -j$(nproc) llama-cli
2727

2828
FROM ${BASE_CUDA_RUN_CONTAINER} as runtime
2929

.devops/llama-rocm.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ ENV LLAMA_HIPBLAS=1
4040
ENV CC=/opt/rocm/llvm/bin/clang
4141
ENV CXX=/opt/rocm/llvm/bin/clang++
4242

43-
RUN make -j$(nproc) llama
43+
RUN make -j$(nproc) llama-cli
4444

4545
ENTRYPOINT [ "/app/llama-cli" ]

.devops/llama.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WORKDIR /app
99

1010
COPY . .
1111

12-
RUN make -j$(nproc) llama
12+
RUN make -j$(nproc) llama-cli
1313

1414
FROM ubuntu:$UBUNTU_VERSION as runtime
1515

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ jobs:
240240
echo "Fetch llama2c model"
241241
wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories260K/stories260K.bin
242242
./bin/convert-llama2c-to-ggml --copy-vocab-from-model ./tok512.bin --llama2c-model stories260K.bin --llama2c-output-model stories260K.gguf
243-
./bin/llama -m stories260K.gguf -p "One day, Lily met a Shoggoth" -n 500 -c 256
243+
./bin/llama-cli -m stories260K.gguf -p "One day, Lily met a Shoggoth" -n 500 -c 256
244244
245245
- name: Determine tag name
246246
id: tag

0 commit comments

Comments
 (0)