-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: thxCode <thxcode0824@gmail.com>
- Loading branch information
0 parents
commit 8673d88
Showing
14 changed files
with
6,000 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
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,199 @@ | ||
name: ci | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: read | ||
actions: read | ||
|
||
env: | ||
VERSION: "${{ github.ref_name }}" | ||
|
||
on: | ||
workflow_dispatch: { } | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "docs/**" | ||
- "**.md" | ||
- "**.mdx" | ||
- "**.png" | ||
- "**.jpg" | ||
pull_request: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "docs/**" | ||
- "**.md" | ||
- "**.mdx" | ||
- "**.png" | ||
- "**.jpg" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
darwin-metal: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# see https://github.com/actions/runner-images?tab=readme-ov-file#available-images. | ||
os: [ macos-13, macos-14 ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Setup XCode | ||
if: ${{ matrix.os == 'macos-13' }} | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: '15.2' | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
submodules: 'recursive' | ||
- name: Deps | ||
continue-on-error: true | ||
run: | | ||
brew update | ||
- name: Build | ||
run: | | ||
echo "===== BUILD =====" | ||
make -j LLAMA_METAL=1 | ||
echo "===== RESULT =====" | ||
[ -f ./.dist/llama-box ] && file ./.dist/llama-box | ||
- name: Release | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./.dist/llama-box | ||
name: llama-box-darwin-${{ endsWith(matrix.os, '-13') && 'amd64' || 'arm64' }}-metal | ||
|
||
linux-hip: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
arch: [ amd64 ] | ||
version: [ '6.0.2' ] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Maximize Space | ||
# see https://github.com/easimon/maximize-build-space/blob/master/action.yml. | ||
run: | | ||
sudo rm -rf /usr/share/dotnet | ||
sudo rm -rf /usr/local/lib/android | ||
sudo rm -rf /opt/ghc | ||
sudo rm -rf /opt/hostedtoolcache/CodeQL | ||
sudo docker image prune --all --force | ||
- name: Clone | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
submodules: 'recursive' | ||
- name: Setup QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
image: tonistiigi/binfmt:qemu-v7.0.0 | ||
platforms: "arm64" | ||
- name: Build | ||
# disable OpenMP to support static linking, | ||
# see https://github.com/ggerganov/llama.cpp/issues/7743#issuecomment-2148342691, | ||
# https://github.com/ggerganov/llama.cpp/issues/7719#issuecomment-2147631216. | ||
run: | | ||
echo "===== SCRIPT =====" | ||
cat <<EOF > /tmp/entrypoint.sh | ||
#!/bin/bash | ||
apt-get update && apt-get install -y build-essential git rocblas-dev hipblas-dev libgomp1 | ||
git config --global --add safe.directory /workspace/llama.cpp | ||
make -j LLAMA_HIPBLAS=1 LLAMA_NO_OPENMP=1 | ||
EOF | ||
chmod +x /tmp/entrypoint.sh | ||
cat /tmp/entrypoint.sh | ||
echo "===== BUILD =====" | ||
docker run \ | ||
--rm \ | ||
--privileged \ | ||
--platform linux/${{ matrix.arch }} \ | ||
--volume $(pwd):/workspace \ | ||
--volume /tmp/entrypoint.sh:/entrypoint.sh \ | ||
--entrypoint /entrypoint.sh \ | ||
--workdir /workspace \ | ||
--env CC=/opt/rocm/llvm/bin/clang \ | ||
--env CXX=/opt/rocm/llvm/bin/clang++ \ | ||
--env GPU_TARGETS="gfx803 gfx900 gfx906 gfx908 gfx90a gfx1010 gfx1030 gfx1100 gfx1101 gfx1102" \ | ||
rocm/dev-ubuntu-22.04:${{ matrix.version }} | ||
echo "===== RESULT =====" | ||
[ -f ./.dist/llama-box ] && file ./.dist/llama-box | ||
- name: Release | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./.dist/llama-box | ||
name: llama-box-linux-${{ matrix.arch }}-hip | ||
|
||
linux-cuda: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
arch: [ amd64, arm64 ] | ||
version: [ '11.7.1' ] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Maximize Space | ||
# see https://github.com/easimon/maximize-build-space/blob/master/action.yml. | ||
run: | | ||
sudo rm -rf /usr/share/dotnet | ||
sudo rm -rf /usr/local/lib/android | ||
sudo rm -rf /opt/ghc | ||
sudo rm -rf /opt/hostedtoolcache/CodeQL | ||
sudo docker image prune --all --force | ||
- name: Clone | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
submodules: 'recursive' | ||
- name: Setup QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
image: tonistiigi/binfmt:qemu-v7.0.0 | ||
platforms: "arm64" | ||
- name: Build | ||
# disable OpenMP to support static linking, | ||
# see https://github.com/ggerganov/llama.cpp/issues/7743#issuecomment-2148342691, | ||
# https://github.com/ggerganov/llama.cpp/issues/7719#issuecomment-2147631216. | ||
run: | | ||
echo "===== SCRIPT =====" | ||
cat <<EOF > /tmp/entrypoint.sh | ||
#!/bin/bash | ||
apt-get update && apt-get install -y build-essential git libgomp1 | ||
git config --global --add safe.directory /workspace/llama.cpp | ||
make -j LLAMA_CUDA=1 LLAMA_NO_OPENMP=1 | ||
EOF | ||
chmod +x /tmp/entrypoint.sh | ||
cat /tmp/entrypoint.sh | ||
echo "===== BUILD =====" | ||
docker run \ | ||
--rm \ | ||
--privileged \ | ||
--platform linux/${{ matrix.arch }} \ | ||
--volume $(pwd):/workspace \ | ||
--workdir /workspace \ | ||
--volume /tmp/entrypoint.sh:/entrypoint.sh \ | ||
--entrypoint /entrypoint.sh \ | ||
--env CUDA_DOCKER_ARCH=all \ | ||
nvidia/cuda:${{ matrix.version }}-devel-ubuntu22.04 | ||
echo "===== RESULT =====" | ||
[ -f ./.dist/llama-box ] && file ./.dist/llama-box | ||
- name: Release | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./.dist/llama-box | ||
name: llama-box-linux-${{ matrix.arch }}-cuda |
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,34 @@ | ||
# Files | ||
.DS_Store | ||
*.o | ||
*.a | ||
*.so | ||
*.gguf | ||
*.bin | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.dylib | ||
*.log | ||
*.dot | ||
*.bat | ||
*.tmp | ||
*.metallib | ||
*.out | ||
*.swp | ||
*.swo | ||
.clang-tidy | ||
version.cpp | ||
|
||
# Directories | ||
.idea/ | ||
.vscode/ | ||
.vs/ | ||
.build/ | ||
.cache/ | ||
.ccls-cache/ | ||
.direnv/ | ||
.sbin/ | ||
.dist/ | ||
out/ | ||
tmp/ |
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,3 @@ | ||
[submodule "llama.cpp"] | ||
path = llama.cpp | ||
url = https://github.com/ggerganov/llama.cpp |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 The llama-box authors | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.