This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f94902
commit 506694d
Showing
3 changed files
with
81 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
FROM nvidia/cuda:11.7.1-devel-ubuntu22.04 AS build | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# inlude kitware apt repo to allow us to grab latest cmake | ||
RUN apt-get update && apt-get install ca-certificates gpg wget | ||
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null | ||
RUN echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ jammy main' | tee /etc/apt/sources.list.d/kitware.list >/dev/null | ||
|
||
RUN apt-get update && apt-get install -y build-essential cmake libboost-dev | ||
|
||
|
||
ADD ./ /turbopilot | ||
|
||
RUN mkdir /turbopilot/build | ||
|
||
WORKDIR /turbopilot/build | ||
|
||
RUN cmake -DGGML_CUBLAS=ON -DCMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc .. | ||
RUN make turbopilot | ||
|
||
FROM nvidia/cuda:11.7.1-cudnn8-runtime-ubuntu22.04 AS runtime | ||
|
||
|
||
WORKDIR /app | ||
|
||
COPY --from=build /turbopilot/build/bin/turbopilot /app/turbopilot | ||
|
||
ENV THREADS=4 | ||
|
||
ENV MODEL="/models/codegen-2B-multi-ggml-4bit-quant.bin" | ||
|
||
ENV BATCHSIZE=64 | ||
|
||
COPY ./run.sh /app/ | ||
|
||
EXPOSE 18080 | ||
|
||
CMD /app/run.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
FROM nvidia/cuda:12.2.0-devel-ubuntu20.04 AS build | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# inlude kitware apt repo to allow us to grab latest cmake | ||
RUN apt-get update && apt-get install ca-certificates gpg wget | ||
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null | ||
RUN echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ focal main' | tee /etc/apt/sources.list.d/kitware.list >/dev/null | ||
|
||
RUN apt-get update && apt-get install -y build-essential cmake libboost-dev | ||
|
||
ADD ./ /turbopilot | ||
|
||
RUN mkdir /turbopilot/build | ||
|
||
WORKDIR /turbopilot/build | ||
|
||
RUN cmake -DGGML_CUBLAS=ON -DCMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc .. | ||
RUN make turbopilot | ||
|
||
FROM nvidia/cuda:12.2.0-runtime-ubuntu20.04 AS runtime | ||
|
||
WORKDIR /app | ||
|
||
COPY --from=build /turbopilot/build/bin/turbopilot /app/turbopilot | ||
|
||
ENV THREADS=4 | ||
|
||
ENV MODEL="/models/codegen-2B-multi-ggml-4bit-quant.bin" | ||
|
||
ENV BATCHSIZE=64 | ||
|
||
COPY ./run.sh /app/ | ||
|
||
EXPOSE 18080 | ||
|
||
CMD /app/run.sh |