-
Notifications
You must be signed in to change notification settings - Fork 12.4k
docker : add cann build pipline #14591
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
diannaojiang
wants to merge
5
commits into
ggml-org:master
Choose a base branch
from
diannaojiang:docker-cann
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
8b30782
docker: add cann build pipline
diannaojiang 24ff483
docker: add cann build pipline
diannaojiang 1b752da
docker: fix cann devops
diannaojiang 06cad0b
cann : fix multi card hccl
diannaojiang 48384b6
Update ggml/src/ggml-cann/ggml-cann.cpp
ggerganov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,130 @@ | ||
# ============================================================================== | ||
# ARGUMENTS | ||
# ============================================================================== | ||
|
||
# Define the CANN base image for easier version updates later | ||
ARG CANN_BASE_IMAGE=quay.io/ascend/cann:8.1.rc1-910b-openeuler22.03-py3.10 | ||
|
||
# ============================================================================== | ||
# BUILD STAGE | ||
# Compile all binary files and libraries | ||
# ============================================================================== | ||
FROM ${CANN_BASE_IMAGE} AS build | ||
|
||
# Define the Ascend chip model for compilation. Default is Ascend910B3 | ||
ARG ASCEND_SOC_TYPE=Ascend910B3 | ||
|
||
# -- Install build dependencies -- | ||
RUN yum install -y gcc g++ cmake make git libcurl-devel python3 python3-pip && \ | ||
yum clean all && \ | ||
rm -rf /var/cache/yum | ||
|
||
# -- Set the working directory -- | ||
WORKDIR /app | ||
|
||
# -- Copy project files -- | ||
COPY . . | ||
|
||
# -- Set CANN environment variables (required for compilation) -- | ||
# Using ENV instead of `source` allows environment variables to persist across the entire image layer | ||
ENV ASCEND_TOOLKIT_HOME=/usr/local/Ascend/ascend-toolkit/latest | ||
ENV LD_LIBRARY_PATH=${ASCEND_TOOLKIT_HOME}/lib64:${LD_LIBRARY_PATH} | ||
ENV PATH=${ASCEND_TOOLKIT_HOME}/bin:${PATH} | ||
ENV ASCEND_OPP_PATH=${ASCEND_TOOLKIT_HOME}/opp | ||
ENV LD_LIBRARY_PATH=${ASCEND_TOOLKIT_HOME}/runtime/lib64/stub:$LD_LIBRARY_PATH | ||
# ... You can add other environment variables from the original file as needed ... | ||
# For brevity, only core variables are listed here. You can paste the original ENV list here. | ||
|
||
# -- Build llama.cpp -- | ||
# Use the passed ASCEND_SOC_TYPE argument and add general build options | ||
RUN source /usr/local/Ascend/ascend-toolkit/set_env.sh --force \ | ||
&& \ | ||
cmake -B build \ | ||
-DGGML_CANN=ON \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DSOC_TYPE=${ASCEND_SOC_TYPE} \ | ||
. && \ | ||
cmake --build build --config Release -j$(nproc) | ||
|
||
# -- Organize build artifacts for copying in later stages -- | ||
# Create a lib directory to store all .so files | ||
RUN mkdir -p /app/lib && \ | ||
find build -name "*.so" -exec cp {} /app/lib \; | ||
|
||
# Create a full directory to store all executables and Python scripts | ||
RUN mkdir -p /app/full && \ | ||
cp build/bin/* /app/full/ && \ | ||
cp *.py /app/full/ && \ | ||
cp -r gguf-py /app/full/ && \ | ||
cp -r requirements /app/full/ && \ | ||
cp requirements.txt /app/full/ | ||
# If you have a tools.sh script, make sure it is copied here | ||
# cp .devops/tools.sh /app/full/tools.sh | ||
|
||
# ============================================================================== | ||
# BASE STAGE | ||
# Create a minimal base image with CANN runtime and common libraries | ||
# ============================================================================== | ||
FROM ${CANN_BASE_IMAGE} AS base | ||
|
||
# -- Install runtime dependencies -- | ||
RUN yum install -y libgomp curl && \ | ||
yum clean all && \ | ||
rm -rf /var/cache/yum | ||
|
||
# -- Set CANN environment variables (required for runtime) -- | ||
ENV ASCEND_TOOLKIT_HOME=/usr/local/Ascend/ascend-toolkit/latest | ||
ENV LD_LIBRARY_PATH=/app:${ASCEND_TOOLKIT_HOME}/lib64:${LD_LIBRARY_PATH} | ||
ENV PATH=${ASCEND_TOOLKIT_HOME}/bin:${PATH} | ||
ENV ASCEND_OPP_PATH=${ASCEND_TOOLKIT_HOME}/opp | ||
# ... You can add other environment variables from the original file as needed ... | ||
|
||
WORKDIR /app | ||
|
||
# Copy compiled .so files from the build stage | ||
COPY --from=build /app/lib/ /app | ||
|
||
# ============================================================================== | ||
# FINAL STAGES (TARGETS) | ||
# ============================================================================== | ||
|
||
### Target: full | ||
# Complete image with all tools, Python bindings, and dependencies | ||
# ============================================================================== | ||
FROM base AS full | ||
|
||
COPY --from=build /app/full /app | ||
|
||
# Install Python dependencies | ||
RUN yum install -y git python3 python3-pip && \ | ||
pip3 install --no-cache-dir --upgrade pip setuptools wheel && \ | ||
pip3 install --no-cache-dir -r requirements.txt && \ | ||
yum clean all && \ | ||
rm -rf /var/cache/yum | ||
|
||
# You need to provide a tools.sh script as the entrypoint | ||
ENTRYPOINT ["/app/tools.sh"] | ||
# If there is no tools.sh, you can set the default to start the server | ||
# ENTRYPOINT ["/app/llama-server"] | ||
|
||
### Target: light | ||
# Lightweight image containing only llama-cli | ||
# ============================================================================== | ||
FROM base AS light | ||
|
||
COPY --from=build /app/full/llama-cli /app | ||
|
||
ENTRYPOINT [ "/app/llama-cli" ] | ||
|
||
### Target: server | ||
# Dedicated server image containing only llama-server | ||
# ============================================================================== | ||
FROM base AS server | ||
|
||
ENV LLAMA_ARG_HOST=0.0.0.0 | ||
|
||
COPY --from=build /app/full/llama-server /app | ||
|
||
HEALTHCHECK --interval=5m CMD [ "curl", "-f", "http://localhost:8080/health" ] | ||
|
||
ENTRYPOINT [ "/app/llama-server" ] |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.