2023-03-12 21:08:24 +01:00
|
|
|
name: CI
|
2023-03-18 08:27:12 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch: # allows manual triggering
|
|
|
|
inputs:
|
|
|
|
create_release:
|
|
|
|
description: 'Create new release'
|
|
|
|
required: true
|
|
|
|
type: boolean
|
|
|
|
push:
|
2023-04-17 17:00:10 +02:00
|
|
|
branches:
|
|
|
|
- master
|
2023-10-08 10:24:50 +02:00
|
|
|
paths: ['.github/workflows/**', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m']
|
2023-03-18 08:27:12 +01:00
|
|
|
pull_request:
|
2023-04-22 15:12:29 +02:00
|
|
|
types: [opened, synchronize, reopened]
|
2023-10-08 10:24:50 +02:00
|
|
|
paths: ['**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m']
|
2023-03-18 08:27:12 +01:00
|
|
|
|
|
|
|
env:
|
2023-07-07 18:24:01 +02:00
|
|
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
|
|
|
GGML_NLOOP: 3
|
2023-07-07 20:23:57 +02:00
|
|
|
GGML_N_THREADS: 1
|
2023-03-12 21:08:24 +01:00
|
|
|
|
|
|
|
jobs:
|
2023-04-24 17:38:26 +02:00
|
|
|
ubuntu-focal-make:
|
|
|
|
runs-on: ubuntu-20.04
|
2023-03-12 21:08:24 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
2023-03-18 08:27:12 +01:00
|
|
|
id: checkout
|
2023-09-14 19:21:25 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-03-12 21:08:24 +01:00
|
|
|
|
|
|
|
- name: Dependencies
|
2023-03-18 08:27:12 +01:00
|
|
|
id: depends
|
2023-03-12 21:08:24 +01:00
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2023-04-24 17:38:26 +02:00
|
|
|
sudo apt-get install build-essential gcc-8
|
2023-03-12 21:08:24 +01:00
|
|
|
|
|
|
|
- name: Build
|
2023-03-18 08:27:12 +01:00
|
|
|
id: make_build
|
2023-03-12 21:08:24 +01:00
|
|
|
run: |
|
2023-09-28 21:31:04 +02:00
|
|
|
CC=gcc-8 make -j $(nproc)
|
2023-03-12 21:08:24 +01:00
|
|
|
|
2023-08-30 11:42:51 +02:00
|
|
|
- name: Test
|
|
|
|
id: make_test
|
|
|
|
run: |
|
2023-09-28 21:31:04 +02:00
|
|
|
CC=gcc-8 make tests -j $(nproc)
|
|
|
|
make test -j $(nproc)
|
2023-08-30 11:42:51 +02:00
|
|
|
|
2023-03-17 17:38:24 +01:00
|
|
|
ubuntu-latest-cmake:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
2023-03-23 03:20:34 +01:00
|
|
|
id: checkout
|
2023-09-14 19:21:25 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-03-17 17:38:24 +01:00
|
|
|
|
|
|
|
- name: Dependencies
|
2023-03-23 03:20:34 +01:00
|
|
|
id: depends
|
2023-03-17 17:38:24 +01:00
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install build-essential
|
|
|
|
|
|
|
|
- name: Build
|
2023-03-23 03:20:34 +01:00
|
|
|
id: cmake_build
|
2023-03-17 17:38:24 +01:00
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
2023-09-28 21:31:04 +02:00
|
|
|
cmake --build . --config Release -j $(nproc)
|
2023-03-23 03:20:34 +01:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
id: cmake_test
|
|
|
|
run: |
|
|
|
|
cd build
|
2023-07-07 18:24:01 +02:00
|
|
|
ctest --verbose --timeout 900
|
2023-03-17 17:38:24 +01:00
|
|
|
|
2023-03-25 22:38:11 +01:00
|
|
|
ubuntu-latest-cmake-sanitizer:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2023-03-25 23:13:28 +01:00
|
|
|
continue-on-error: true
|
|
|
|
|
2023-03-25 22:38:11 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
sanitizer: [ADDRESS, THREAD, UNDEFINED]
|
2023-03-26 17:48:40 +02:00
|
|
|
build_type: [Debug, Release]
|
2023-03-25 22:38:11 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
2023-09-14 19:21:25 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-03-25 22:38:11 +01:00
|
|
|
|
|
|
|
- name: Dependencies
|
|
|
|
id: depends
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install build-essential
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
id: cmake_build
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2023-04-20 17:15:18 +02:00
|
|
|
cmake .. -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
|
2023-09-28 21:31:04 +02:00
|
|
|
cmake --build . --config ${{ matrix.build_type }} -j $(nproc)
|
2023-03-25 22:38:11 +01:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
id: cmake_test
|
|
|
|
run: |
|
|
|
|
cd build
|
2023-07-07 18:24:01 +02:00
|
|
|
ctest --verbose --timeout 900
|
2023-03-25 22:38:11 +01:00
|
|
|
|
2023-07-10 17:49:56 +02:00
|
|
|
ubuntu-latest-cmake-mpi:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
mpi_library: [mpich, libopenmpi-dev]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
2023-09-14 19:21:25 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-07-10 17:49:56 +02:00
|
|
|
|
|
|
|
- name: Dependencies
|
|
|
|
id: depends
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install build-essential ${{ matrix.mpi_library }}
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
id: cmake_build
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -DLLAMA_MPI=ON ..
|
2023-09-28 21:31:04 +02:00
|
|
|
cmake --build . --config Release -j $(nproc)
|
2023-07-10 17:49:56 +02:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
id: cmake_test
|
|
|
|
run: |
|
|
|
|
cd build
|
|
|
|
ctest --verbose
|
|
|
|
|
2023-12-07 21:26:54 +01:00
|
|
|
# TODO: build with LLAMA_NO_METAL because test-backend-ops fail on "Apple Paravirtual device" and I don't know
|
|
|
|
# how to debug it.
|
|
|
|
# ref: https://github.com/ggerganov/llama.cpp/actions/runs/7131777249/job/19420981052#step:5:1124
|
2023-03-17 17:38:24 +01:00
|
|
|
macOS-latest-make:
|
2023-03-17 10:47:06 +01:00
|
|
|
runs-on: macos-latest
|
2023-03-12 21:08:24 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
2023-03-18 08:27:12 +01:00
|
|
|
id: checkout
|
2023-09-14 19:21:25 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-03-12 21:08:24 +01:00
|
|
|
|
|
|
|
- name: Dependencies
|
2023-03-18 08:27:12 +01:00
|
|
|
id: depends
|
2023-07-04 01:50:12 +02:00
|
|
|
continue-on-error: true
|
2023-03-12 21:08:24 +01:00
|
|
|
run: |
|
|
|
|
brew update
|
|
|
|
|
|
|
|
- name: Build
|
2023-03-18 08:27:12 +01:00
|
|
|
id: make_build
|
2023-03-12 21:08:24 +01:00
|
|
|
run: |
|
2023-12-07 21:26:54 +01:00
|
|
|
LLAMA_NO_METAL=1 make -j $(sysctl -n hw.logicalcpu)
|
2023-03-12 21:08:24 +01:00
|
|
|
|
2023-08-30 11:42:51 +02:00
|
|
|
- name: Test
|
|
|
|
id: make_test
|
|
|
|
run: |
|
2023-12-07 21:26:54 +01:00
|
|
|
LLAMA_NO_METAL=1 make tests -j $(sysctl -n hw.logicalcpu)
|
|
|
|
LLAMA_NO_METAL=1 make test -j $(sysctl -n hw.logicalcpu)
|
2023-08-30 11:42:51 +02:00
|
|
|
|
2023-12-07 21:26:54 +01:00
|
|
|
# TODO: build with LLAMA_METAL=OFF because test-backend-ops fail on "Apple Paravirtual device" and I don't know
|
|
|
|
# how to debug it.
|
|
|
|
# ref: https://github.com/ggerganov/llama.cpp/actions/runs/7132125951/job/19422043567?pr=4359#step:5:6584
|
|
|
|
# would be great if we fix these
|
2023-03-17 17:38:24 +01:00
|
|
|
macOS-latest-cmake:
|
2023-05-07 13:20:09 +02:00
|
|
|
runs-on: macos-latest
|
2023-03-17 17:38:24 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
2023-03-23 03:20:34 +01:00
|
|
|
id: checkout
|
2023-09-14 19:21:25 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-03-17 17:38:24 +01:00
|
|
|
|
|
|
|
- name: Dependencies
|
2023-03-23 03:20:34 +01:00
|
|
|
id: depends
|
2023-07-04 01:50:12 +02:00
|
|
|
continue-on-error: true
|
2023-03-17 17:38:24 +01:00
|
|
|
run: |
|
|
|
|
brew update
|
|
|
|
|
|
|
|
- name: Build
|
2023-03-23 03:20:34 +01:00
|
|
|
id: cmake_build
|
2023-03-17 17:38:24 +01:00
|
|
|
run: |
|
2023-07-05 18:13:06 +02:00
|
|
|
sysctl -a
|
2023-03-17 17:38:24 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2023-12-07 21:26:54 +01:00
|
|
|
cmake -DLLAMA_METAL=OFF ..
|
2023-09-28 21:31:04 +02:00
|
|
|
cmake --build . --config Release -j $(sysctl -n hw.logicalcpu)
|
2023-03-23 03:20:34 +01:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
id: cmake_test
|
|
|
|
run: |
|
|
|
|
cd build
|
2023-07-07 18:24:01 +02:00
|
|
|
ctest --verbose --timeout 900
|
2023-03-17 17:38:24 +01:00
|
|
|
|
2023-09-11 13:49:06 +02:00
|
|
|
macOS-latest-cmake-ios:
|
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Dependencies
|
|
|
|
id: depends
|
|
|
|
continue-on-error: true
|
|
|
|
run: |
|
|
|
|
brew update
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
id: cmake_build
|
|
|
|
run: |
|
|
|
|
sysctl -a
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -G Xcode .. \
|
|
|
|
-DLLAMA_BUILD_EXAMPLES=OFF \
|
|
|
|
-DLLAMA_BUILD_TESTS=OFF \
|
|
|
|
-DLLAMA_BUILD_SERVER=OFF \
|
|
|
|
-DCMAKE_SYSTEM_NAME=iOS \
|
|
|
|
-DCMAKE_OSX_DEPLOYMENT_TARGET=14.0
|
2023-09-28 21:31:04 +02:00
|
|
|
cmake --build . --config Release -j $(sysctl -n hw.logicalcpu)
|
2023-09-11 13:49:06 +02:00
|
|
|
|
|
|
|
macOS-latest-cmake-tvos:
|
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Dependencies
|
|
|
|
id: depends
|
|
|
|
continue-on-error: true
|
|
|
|
run: |
|
|
|
|
brew update
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
id: cmake_build
|
|
|
|
run: |
|
|
|
|
sysctl -a
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -G Xcode .. \
|
|
|
|
-DLLAMA_BUILD_EXAMPLES=OFF \
|
|
|
|
-DLLAMA_BUILD_TESTS=OFF \
|
|
|
|
-DLLAMA_BUILD_SERVER=OFF \
|
|
|
|
-DCMAKE_SYSTEM_NAME=tvOS \
|
|
|
|
-DCMAKE_OSX_DEPLOYMENT_TARGET=14.0
|
2023-09-28 21:31:04 +02:00
|
|
|
cmake --build . --config Release -j $(sysctl -n hw.logicalcpu)
|
2023-09-11 13:49:06 +02:00
|
|
|
|
2023-10-05 15:56:21 +02:00
|
|
|
macOS-latest-swift:
|
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-10-06 12:36:43 +02:00
|
|
|
destination: ['generic/platform=macOS', 'generic/platform=iOS', 'generic/platform=tvOS']
|
2023-10-05 15:56:21 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Dependencies
|
|
|
|
id: depends
|
|
|
|
continue-on-error: true
|
|
|
|
run: |
|
|
|
|
brew update
|
|
|
|
|
|
|
|
- name: xcodebuild for swift package
|
|
|
|
id: xcodebuild
|
|
|
|
run: |
|
|
|
|
xcodebuild -scheme llama -destination "${{ matrix.destination }}"
|
|
|
|
|
2023-10-11 13:14:05 +02:00
|
|
|
- name: Build Swift Example
|
|
|
|
id: make_build_swift_example
|
|
|
|
run: |
|
|
|
|
make swift
|
|
|
|
|
2023-03-17 17:38:24 +01:00
|
|
|
windows-latest-cmake:
|
2023-03-13 21:29:10 +01:00
|
|
|
runs-on: windows-latest
|
2023-07-07 18:24:01 +02:00
|
|
|
|
2023-05-07 13:20:09 +02:00
|
|
|
env:
|
|
|
|
OPENBLAS_VERSION: 0.3.23
|
|
|
|
OPENCL_VERSION: 2023.04.17
|
2023-05-24 09:30:09 +02:00
|
|
|
CLBLAST_VERSION: 1.6.0
|
2024-01-22 09:55:05 +01:00
|
|
|
SDE_VERSION: 9.33.0-2024-01-07
|
2023-03-13 21:29:10 +01:00
|
|
|
|
2023-03-25 22:38:11 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
2023-07-25 14:16:13 +02:00
|
|
|
- build: 'noavx'
|
2023-10-03 18:53:15 +02:00
|
|
|
defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_AVX=OFF -DLLAMA_AVX2=OFF -DLLAMA_FMA=OFF -DBUILD_SHARED_LIBS=ON'
|
2023-05-07 13:20:09 +02:00
|
|
|
- build: 'avx2'
|
2023-10-03 18:53:15 +02:00
|
|
|
defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DBUILD_SHARED_LIBS=ON'
|
2023-05-07 13:20:09 +02:00
|
|
|
- build: 'avx'
|
2023-10-03 18:53:15 +02:00
|
|
|
defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_AVX2=OFF -DBUILD_SHARED_LIBS=ON'
|
2023-05-07 13:20:09 +02:00
|
|
|
- build: 'avx512'
|
2023-10-03 18:53:15 +02:00
|
|
|
defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_AVX512=ON -DBUILD_SHARED_LIBS=ON'
|
2023-05-07 13:20:09 +02:00
|
|
|
- build: 'clblast'
|
2023-10-03 18:53:15 +02:00
|
|
|
defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_CLBLAST=ON -DBUILD_SHARED_LIBS=ON -DCMAKE_PREFIX_PATH="$env:RUNNER_TEMP/clblast"'
|
2023-05-07 13:20:09 +02:00
|
|
|
- build: 'openblas'
|
2023-10-03 18:53:15 +02:00
|
|
|
defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_BLAS=ON -DBUILD_SHARED_LIBS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS -DBLAS_INCLUDE_DIRS="$env:RUNNER_TEMP/openblas/include" -DBLAS_LIBRARIES="$env:RUNNER_TEMP/openblas/lib/openblas.lib"'
|
2023-03-25 22:38:11 +01:00
|
|
|
|
2023-03-13 21:29:10 +01:00
|
|
|
steps:
|
|
|
|
- name: Clone
|
2023-03-18 08:27:12 +01:00
|
|
|
id: checkout
|
2023-09-14 19:21:25 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-09-15 21:18:15 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-03-13 21:29:10 +01:00
|
|
|
|
2023-05-07 13:20:09 +02:00
|
|
|
- name: Download OpenCL SDK
|
|
|
|
id: get_opencl
|
|
|
|
if: ${{ matrix.build == 'clblast' }}
|
|
|
|
run: |
|
|
|
|
curl.exe -o $env:RUNNER_TEMP/opencl.zip -L "https://github.com/KhronosGroup/OpenCL-SDK/releases/download/v${env:OPENCL_VERSION}/OpenCL-SDK-v${env:OPENCL_VERSION}-Win-x64.zip"
|
|
|
|
mkdir $env:RUNNER_TEMP/opencl
|
|
|
|
tar.exe -xvf $env:RUNNER_TEMP/opencl.zip --strip-components=1 -C $env:RUNNER_TEMP/opencl
|
|
|
|
|
|
|
|
- name: Download CLBlast
|
|
|
|
id: get_clblast
|
|
|
|
if: ${{ matrix.build == 'clblast' }}
|
|
|
|
run: |
|
2023-05-24 09:30:09 +02:00
|
|
|
curl.exe -o $env:RUNNER_TEMP/clblast.7z -L "https://github.com/CNugteren/CLBlast/releases/download/${env:CLBLAST_VERSION}/CLBlast-${env:CLBLAST_VERSION}-windows-x64.7z"
|
2023-05-07 13:20:09 +02:00
|
|
|
curl.exe -o $env:RUNNER_TEMP/CLBlast.LICENSE.txt -L "https://github.com/CNugteren/CLBlast/raw/${env:CLBLAST_VERSION}/LICENSE"
|
2023-05-24 09:30:09 +02:00
|
|
|
7z x "-o${env:RUNNER_TEMP}" $env:RUNNER_TEMP/clblast.7z
|
2023-05-27 14:18:25 +02:00
|
|
|
rename-item $env:RUNNER_TEMP/CLBlast-${env:CLBLAST_VERSION}-windows-x64 clblast
|
2023-05-07 13:20:09 +02:00
|
|
|
foreach ($f in (gci -Recurse -Path "$env:RUNNER_TEMP/clblast" -Filter '*.cmake')) {
|
|
|
|
$txt = Get-Content -Path $f -Raw
|
2023-05-24 09:30:09 +02:00
|
|
|
$txt.Replace('C:/vcpkg/packages/opencl_x64-windows/', "$($env:RUNNER_TEMP.Replace('\','/'))/opencl/") | Set-Content -Path $f -Encoding UTF8
|
2023-05-07 13:20:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- name: Download OpenBLAS
|
|
|
|
id: get_openblas
|
|
|
|
if: ${{ matrix.build == 'openblas' }}
|
|
|
|
run: |
|
|
|
|
curl.exe -o $env:RUNNER_TEMP/openblas.zip -L "https://github.com/xianyi/OpenBLAS/releases/download/v${env:OPENBLAS_VERSION}/OpenBLAS-${env:OPENBLAS_VERSION}-x64.zip"
|
|
|
|
curl.exe -o $env:RUNNER_TEMP/OpenBLAS.LICENSE.txt -L "https://github.com/xianyi/OpenBLAS/raw/v${env:OPENBLAS_VERSION}/LICENSE"
|
|
|
|
mkdir $env:RUNNER_TEMP/openblas
|
|
|
|
tar.exe -xvf $env:RUNNER_TEMP/openblas.zip -C $env:RUNNER_TEMP/openblas
|
|
|
|
$vcdir = $(vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath)
|
|
|
|
$msvc = $(join-path $vcdir $('VC\Tools\MSVC\'+$(gc -raw $(join-path $vcdir 'VC\Auxiliary\Build\Microsoft.VCToolsVersion.default.txt')).Trim()))
|
|
|
|
$lib = $(join-path $msvc 'bin\Hostx64\x64\lib.exe')
|
|
|
|
& $lib /machine:x64 "/def:${env:RUNNER_TEMP}/openblas/lib/libopenblas.def" "/out:${env:RUNNER_TEMP}/openblas/lib/openblas.lib" /name:openblas.dll
|
|
|
|
|
2023-03-13 21:29:10 +01:00
|
|
|
- name: Build
|
2023-03-18 08:27:12 +01:00
|
|
|
id: cmake_build
|
2023-03-13 21:29:10 +01:00
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2023-03-25 22:38:11 +01:00
|
|
|
cmake .. ${{ matrix.defines }}
|
2023-09-28 21:31:04 +02:00
|
|
|
cmake --build . --config Release -j ${env:NUMBER_OF_PROCESSORS}
|
2023-05-07 13:20:09 +02:00
|
|
|
|
|
|
|
- name: Add clblast.dll
|
|
|
|
id: add_clblast_dll
|
|
|
|
if: ${{ matrix.build == 'clblast' }}
|
|
|
|
run: |
|
|
|
|
cp $env:RUNNER_TEMP/clblast/lib/clblast.dll ./build/bin/Release
|
|
|
|
cp $env:RUNNER_TEMP/CLBlast.LICENSE.txt ./build/bin/Release/CLBlast-${env:CLBLAST_VERSION}.txt
|
|
|
|
|
|
|
|
- name: Add libopenblas.dll
|
|
|
|
id: add_libopenblas_dll
|
|
|
|
if: ${{ matrix.build == 'openblas' }}
|
|
|
|
run: |
|
|
|
|
cp $env:RUNNER_TEMP/openblas/bin/libopenblas.dll ./build/bin/Release/openblas.dll
|
|
|
|
cp $env:RUNNER_TEMP/OpenBLAS.LICENSE.txt ./build/bin/Release/OpenBLAS-${env:OPENBLAS_VERSION}.txt
|
2023-03-23 03:20:34 +01:00
|
|
|
|
2023-03-25 22:38:11 +01:00
|
|
|
- name: Check AVX512F support
|
|
|
|
id: check_avx512f
|
|
|
|
if: ${{ matrix.build == 'avx512' }}
|
|
|
|
continue-on-error: true
|
|
|
|
run: |
|
2023-03-29 22:44:39 +02:00
|
|
|
cd build
|
|
|
|
$vcdir = $(vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath)
|
|
|
|
$msvc = $(join-path $vcdir $('VC\Tools\MSVC\'+$(gc -raw $(join-path $vcdir 'VC\Auxiliary\Build\Microsoft.VCToolsVersion.default.txt')).Trim()))
|
|
|
|
$cl = $(join-path $msvc 'bin\Hostx64\x64\cl.exe')
|
|
|
|
echo 'int main(void){unsigned int a[4];__cpuid(a,7);return !(a[1]&65536);}' >> avx512f.c
|
|
|
|
& $cl /O2 /GS- /kernel avx512f.c /link /nodefaultlib /entry:main
|
|
|
|
.\avx512f.exe && echo "AVX512F: YES" && ( echo HAS_AVX512F=1 >> $env:GITHUB_ENV ) || echo "AVX512F: NO"
|
2023-03-25 22:38:11 +01:00
|
|
|
|
2023-03-23 03:20:34 +01:00
|
|
|
- name: Test
|
|
|
|
id: cmake_test
|
2023-11-05 08:46:44 +01:00
|
|
|
if: ${{ matrix.build != 'clblast' && (matrix.build != 'avx512' || env.HAS_AVX512F == '1') }} # not all machines have native AVX-512
|
2023-03-23 03:20:34 +01:00
|
|
|
run: |
|
|
|
|
cd build
|
2023-07-07 18:24:01 +02:00
|
|
|
ctest -C Release --verbose --timeout 900
|
2023-03-13 21:29:10 +01:00
|
|
|
|
2023-11-05 08:46:44 +01:00
|
|
|
- name: Test (Intel SDE)
|
|
|
|
id: cmake_test_sde
|
|
|
|
if: ${{ matrix.build == 'avx512' && env.HAS_AVX512F == '0' }} # use Intel SDE for AVX-512 emulation
|
|
|
|
run: |
|
2024-01-22 09:55:05 +01:00
|
|
|
curl.exe -o $env:RUNNER_TEMP/sde.tar.xz -L "https://downloadmirror.intel.com/813591/sde-external-${env:SDE_VERSION}-win.tar.xz"
|
2023-11-05 08:46:44 +01:00
|
|
|
# for some weird reason windows tar doesn't like sde tar.xz
|
|
|
|
7z x "-o${env:RUNNER_TEMP}" $env:RUNNER_TEMP/sde.tar.xz
|
|
|
|
7z x "-o${env:RUNNER_TEMP}" $env:RUNNER_TEMP/sde.tar
|
|
|
|
$sde = $(join-path $env:RUNNER_TEMP sde-external-${env:SDE_VERSION}-win/sde.exe)
|
|
|
|
cd build
|
|
|
|
& $sde -future -- ctest -C Release --verbose --timeout 900
|
|
|
|
|
2023-08-24 15:58:02 +02:00
|
|
|
- name: Determine tag name
|
|
|
|
id: tag
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
BUILD_NUMBER="$(git rev-list --count HEAD)"
|
|
|
|
SHORT_HASH="$(git rev-parse --short=7 HEAD)"
|
|
|
|
if [[ "${{ env.BRANCH_NAME }}" == "master" ]]; then
|
|
|
|
echo "name=b${BUILD_NUMBER}" >> $GITHUB_OUTPUT
|
|
|
|
else
|
|
|
|
SAFE_NAME=$(echo "${{ env.BRANCH_NAME }}" | tr '/' '-')
|
|
|
|
echo "name=${SAFE_NAME}-b${BUILD_NUMBER}-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
|
|
|
fi
|
2023-03-18 08:27:12 +01:00
|
|
|
|
|
|
|
- name: Pack artifacts
|
|
|
|
id: pack_artifacts
|
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
|
run: |
|
2023-05-27 16:24:06 +02:00
|
|
|
Copy-Item LICENSE .\build\bin\Release\llama.cpp.txt
|
2023-08-24 15:58:02 +02:00
|
|
|
7z a llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-x64.zip .\build\bin\Release\*
|
2023-03-25 22:38:11 +01:00
|
|
|
|
|
|
|
- name: Upload artifacts
|
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
path: |
|
2023-08-24 15:58:02 +02:00
|
|
|
llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-x64.zip
|
2023-03-25 22:38:11 +01:00
|
|
|
|
2023-05-05 22:56:09 +02:00
|
|
|
windows-latest-cmake-cublas:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-09-14 19:21:25 +02:00
|
|
|
cuda: ['12.2.0', '11.7.1']
|
2023-05-05 22:56:09 +02:00
|
|
|
build: ['cublas']
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
2023-09-14 19:21:25 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-09-15 21:18:15 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-05-05 22:56:09 +02:00
|
|
|
|
2023-09-14 19:21:25 +02:00
|
|
|
- uses: Jimver/cuda-toolkit@v0.2.11
|
2023-05-05 22:56:09 +02:00
|
|
|
id: cuda-toolkit
|
|
|
|
with:
|
|
|
|
cuda: ${{ matrix.cuda }}
|
2023-09-18 02:21:47 +02:00
|
|
|
method: 'network'
|
2023-09-14 19:21:25 +02:00
|
|
|
sub-packages: '["nvcc", "cudart", "cublas", "cublas_dev", "thrust", "visual_studio_integration"]'
|
2023-05-05 22:56:09 +02:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
id: cmake_build
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2023-10-03 18:53:15 +02:00
|
|
|
cmake .. -DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_CUBLAS=ON -DBUILD_SHARED_LIBS=ON
|
2023-09-28 21:31:04 +02:00
|
|
|
cmake --build . --config Release -j ${env:NUMBER_OF_PROCESSORS}
|
2023-05-05 22:56:09 +02:00
|
|
|
|
2023-08-24 15:58:02 +02:00
|
|
|
- name: Determine tag name
|
|
|
|
id: tag
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
BUILD_NUMBER="$(git rev-list --count HEAD)"
|
|
|
|
SHORT_HASH="$(git rev-parse --short=7 HEAD)"
|
|
|
|
if [[ "${{ env.BRANCH_NAME }}" == "master" ]]; then
|
|
|
|
echo "name=b${BUILD_NUMBER}" >> $GITHUB_OUTPUT
|
|
|
|
else
|
|
|
|
SAFE_NAME=$(echo "${{ env.BRANCH_NAME }}" | tr '/' '-')
|
|
|
|
echo "name=${SAFE_NAME}-b${BUILD_NUMBER}-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
|
|
|
fi
|
2023-05-05 22:56:09 +02:00
|
|
|
|
|
|
|
- name: Pack artifacts
|
|
|
|
id: pack_artifacts
|
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
|
run: |
|
2023-08-24 15:58:02 +02:00
|
|
|
7z a llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-cu${{ matrix.cuda }}-x64.zip .\build\bin\Release\*
|
2023-05-05 22:56:09 +02:00
|
|
|
|
|
|
|
- name: Upload artifacts
|
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
path: |
|
2023-08-24 15:58:02 +02:00
|
|
|
llama-${{ steps.tag.outputs.name }}-bin-win-${{ matrix.build }}-cu${{ matrix.cuda }}-x64.zip
|
2023-05-05 22:56:09 +02:00
|
|
|
|
|
|
|
- name: Copy and pack Cuda runtime
|
|
|
|
run: |
|
|
|
|
echo "Cuda install location: ${{steps.cuda-toolkit.outputs.CUDA_PATH}}"
|
2023-09-14 19:21:25 +02:00
|
|
|
$dst='.\build\bin\cudart\'
|
|
|
|
robocopy "${{steps.cuda-toolkit.outputs.CUDA_PATH}}\bin" $dst cudart64_*.dll cublas64_*.dll cublasLt64_*.dll
|
|
|
|
7z a cudart-llama-bin-win-cu${{ matrix.cuda }}-x64.zip $dst\*
|
2023-05-05 22:56:09 +02:00
|
|
|
|
|
|
|
- name: Upload Cuda runtime
|
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
cudart-llama-bin-win-cu${{ matrix.cuda }}-x64.zip
|
|
|
|
|
2023-11-27 15:56:52 +01:00
|
|
|
ios-xcode-build:
|
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Build Xcode project
|
|
|
|
run: xcodebuild -project examples/llama.swiftui/llama.swiftui.xcodeproj -scheme llama.swiftui -sdk iphoneos CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= -destination 'generic/platform=iOS' build
|
|
|
|
|
2024-01-16 14:47:34 +01:00
|
|
|
android-build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up JDK
|
|
|
|
uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
java-version: 17
|
|
|
|
distribution: zulu
|
|
|
|
|
|
|
|
- name: Setup Android SDK
|
|
|
|
uses: android-actions/setup-android@v3
|
|
|
|
with:
|
|
|
|
log-accepted-android-sdk-licenses: false
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cd examples/llama.android
|
|
|
|
|
|
|
|
# Skip armeabi-v7a for now (https://github.com/llvm/llvm-project/issues/65820).
|
|
|
|
./gradlew build --no-daemon -Pskip-armeabi-v7a
|
|
|
|
|
2023-09-28 18:36:36 +02:00
|
|
|
# freeBSD-latest:
|
|
|
|
# runs-on: macos-12
|
|
|
|
# steps:
|
|
|
|
# - name: Clone
|
|
|
|
# uses: actions/checkout@v3
|
|
|
|
#
|
|
|
|
# - name: Build
|
|
|
|
# uses: cross-platform-actions/action@v0.19.0
|
|
|
|
# with:
|
|
|
|
# operating_system: freebsd
|
|
|
|
# version: '13.2'
|
|
|
|
# hypervisor: 'qemu'
|
|
|
|
# run: |
|
|
|
|
# sudo pkg update
|
|
|
|
# sudo pkg install -y gmake automake autoconf pkgconf llvm15 clinfo clover opencl clblast openblas
|
2023-09-28 21:31:04 +02:00
|
|
|
# gmake CC=/usr/local/bin/clang15 CXX=/usr/local/bin/clang++15 -j `sysctl -n hw.ncpu`
|
2023-09-14 19:21:25 +02:00
|
|
|
|
2023-03-25 22:38:11 +01:00
|
|
|
release:
|
|
|
|
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
needs:
|
2023-04-24 17:38:26 +02:00
|
|
|
- ubuntu-focal-make
|
2023-03-25 22:38:11 +01:00
|
|
|
- ubuntu-latest-cmake
|
|
|
|
- macOS-latest-make
|
|
|
|
- macOS-latest-cmake
|
|
|
|
- windows-latest-cmake
|
2023-05-05 22:56:09 +02:00
|
|
|
- windows-latest-cmake-cublas
|
2023-03-25 22:38:11 +01:00
|
|
|
|
|
|
|
steps:
|
2023-08-24 15:58:02 +02:00
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
2023-09-14 19:21:25 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-09-15 21:18:15 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-08-24 15:58:02 +02:00
|
|
|
|
|
|
|
- name: Determine tag name
|
|
|
|
id: tag
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
BUILD_NUMBER="$(git rev-list --count HEAD)"
|
|
|
|
SHORT_HASH="$(git rev-parse --short=7 HEAD)"
|
|
|
|
if [[ "${{ env.BRANCH_NAME }}" == "master" ]]; then
|
|
|
|
echo "name=b${BUILD_NUMBER}" >> $GITHUB_OUTPUT
|
|
|
|
else
|
|
|
|
SAFE_NAME=$(echo "${{ env.BRANCH_NAME }}" | tr '/' '-')
|
|
|
|
echo "name=${SAFE_NAME}-b${BUILD_NUMBER}-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
|
|
|
fi
|
|
|
|
|
2023-03-25 22:38:11 +01:00
|
|
|
- name: Download artifacts
|
|
|
|
id: download-artifact
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
|
2023-03-18 08:27:12 +01:00
|
|
|
- name: Create release
|
|
|
|
id: create_release
|
2023-03-25 22:38:11 +01:00
|
|
|
uses: anzz1/action-create-release@v1
|
2023-03-18 08:27:12 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2023-08-24 15:58:02 +02:00
|
|
|
tag_name: ${{ steps.tag.outputs.name }}
|
2023-03-18 08:27:12 +01:00
|
|
|
|
|
|
|
- name: Upload release
|
|
|
|
id: upload_release
|
2023-03-25 22:38:11 +01:00
|
|
|
uses: actions/github-script@v3
|
2023-03-18 08:27:12 +01:00
|
|
|
with:
|
2023-03-25 22:38:11 +01:00
|
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
script: |
|
|
|
|
const path = require('path');
|
|
|
|
const fs = require('fs');
|
|
|
|
const release_id = '${{ steps.create_release.outputs.id }}';
|
|
|
|
for (let file of await fs.readdirSync('./artifact')) {
|
|
|
|
if (path.extname(file) === '.zip') {
|
|
|
|
console.log('uploadReleaseAsset', file);
|
|
|
|
await github.repos.uploadReleaseAsset({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
release_id: release_id,
|
|
|
|
name: file,
|
|
|
|
data: await fs.readFileSync(`./artifact/${file}`)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2023-03-18 08:27:12 +01:00
|
|
|
|
2023-03-12 21:08:24 +01:00
|
|
|
# ubuntu-latest-gcc:
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
#
|
|
|
|
# strategy:
|
|
|
|
# matrix:
|
|
|
|
# build: [Debug, Release]
|
|
|
|
#
|
|
|
|
# steps:
|
|
|
|
# - name: Clone
|
2023-09-14 19:21:25 +02:00
|
|
|
# uses: actions/checkout@v3
|
2023-03-12 21:08:24 +01:00
|
|
|
#
|
|
|
|
# - name: Dependencies
|
|
|
|
# run: |
|
|
|
|
# sudo apt-get update
|
|
|
|
# sudo apt-get install build-essential
|
|
|
|
# sudo apt-get install cmake
|
|
|
|
#
|
|
|
|
# - name: Configure
|
|
|
|
# run: cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }}
|
|
|
|
#
|
|
|
|
# - name: Build
|
|
|
|
# run: |
|
|
|
|
# make
|
|
|
|
#
|
|
|
|
# ubuntu-latest-clang:
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
#
|
|
|
|
# strategy:
|
|
|
|
# matrix:
|
|
|
|
# build: [Debug, Release]
|
|
|
|
#
|
|
|
|
# steps:
|
|
|
|
# - name: Clone
|
2023-09-14 19:21:25 +02:00
|
|
|
# uses: actions/checkout@v3
|
2023-03-12 21:08:24 +01:00
|
|
|
#
|
|
|
|
# - name: Dependencies
|
|
|
|
# run: |
|
|
|
|
# sudo apt-get update
|
|
|
|
# sudo apt-get install build-essential
|
|
|
|
# sudo apt-get install cmake
|
|
|
|
#
|
|
|
|
# - name: Configure
|
|
|
|
# run: cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }} -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang
|
|
|
|
#
|
|
|
|
# - name: Build
|
|
|
|
# run: |
|
|
|
|
# make
|
|
|
|
#
|
|
|
|
# ubuntu-latest-gcc-sanitized:
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
#
|
|
|
|
# strategy:
|
|
|
|
# matrix:
|
|
|
|
# sanitizer: [ADDRESS, THREAD, UNDEFINED]
|
|
|
|
#
|
|
|
|
# steps:
|
|
|
|
# - name: Clone
|
2023-09-14 19:21:25 +02:00
|
|
|
# uses: actions/checkout@v3
|
2023-03-12 21:08:24 +01:00
|
|
|
#
|
|
|
|
# - name: Dependencies
|
|
|
|
# run: |
|
|
|
|
# sudo apt-get update
|
|
|
|
# sudo apt-get install build-essential
|
|
|
|
# sudo apt-get install cmake
|
|
|
|
#
|
|
|
|
# - name: Configure
|
|
|
|
# run: cmake . -DCMAKE_BUILD_TYPE=Debug -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON
|
|
|
|
#
|
|
|
|
# - name: Build
|
|
|
|
# run: |
|
|
|
|
# make
|
|
|
|
#
|
|
|
|
# windows:
|
|
|
|
# runs-on: windows-latest
|
|
|
|
#
|
|
|
|
# strategy:
|
|
|
|
# matrix:
|
|
|
|
# build: [Release]
|
|
|
|
# arch: [Win32, x64]
|
|
|
|
# include:
|
|
|
|
# - arch: Win32
|
|
|
|
# s2arc: x86
|
|
|
|
# - arch: x64
|
|
|
|
# s2arc: x64
|
|
|
|
#
|
|
|
|
# steps:
|
|
|
|
# - name: Clone
|
2023-09-14 19:21:25 +02:00
|
|
|
# uses: actions/checkout@v3
|
2023-03-12 21:08:24 +01:00
|
|
|
#
|
|
|
|
# - name: Add msbuild to PATH
|
|
|
|
# uses: microsoft/setup-msbuild@v1
|
|
|
|
#
|
|
|
|
# - name: Configure
|
|
|
|
# run: >
|
|
|
|
# cmake -S . -B ./build -A ${{ matrix.arch }}
|
|
|
|
# -DCMAKE_BUILD_TYPE=${{ matrix.build }}
|
|
|
|
#
|
|
|
|
# - name: Build
|
|
|
|
# run: |
|
|
|
|
# cd ./build
|
|
|
|
# msbuild ALL_BUILD.vcxproj -t:build -p:configuration=${{ matrix.build }} -p:platform=${{ matrix.arch }}
|
|
|
|
#
|
|
|
|
# - name: Upload binaries
|
|
|
|
# uses: actions/upload-artifact@v1
|
|
|
|
# with:
|
|
|
|
# name: llama-bin-${{ matrix.arch }}
|
|
|
|
# path: build/bin/${{ matrix.build }}
|
|
|
|
#
|
|
|
|
# windows-blas:
|
|
|
|
# runs-on: windows-latest
|
|
|
|
#
|
|
|
|
# strategy:
|
|
|
|
# matrix:
|
|
|
|
# build: [Release]
|
|
|
|
# arch: [Win32, x64]
|
|
|
|
# blas: [ON]
|
|
|
|
# include:
|
|
|
|
# - arch: Win32
|
|
|
|
# obzip: https://github.com/xianyi/OpenBLAS/releases/download/v0.3.21/OpenBLAS-0.3.21-x86.zip
|
|
|
|
# s2arc: x86
|
|
|
|
# - arch: x64
|
|
|
|
# obzip: https://github.com/xianyi/OpenBLAS/releases/download/v0.3.21/OpenBLAS-0.3.21-x64.zip
|
|
|
|
# s2arc: x64
|
|
|
|
#
|
|
|
|
# steps:
|
|
|
|
# - name: Clone
|
2023-09-14 19:21:25 +02:00
|
|
|
# uses: actions/checkout@v3
|
2023-03-12 21:08:24 +01:00
|
|
|
#
|
|
|
|
# - name: Add msbuild to PATH
|
|
|
|
# uses: microsoft/setup-msbuild@v1
|
|
|
|
#
|
|
|
|
# - name: Fetch OpenBLAS
|
|
|
|
# if: matrix.blas == 'ON'
|
|
|
|
# run: |
|
|
|
|
# C:/msys64/usr/bin/wget.exe -qO blas.zip ${{ matrix.obzip }}
|
|
|
|
# 7z x blas.zip -oblas -y
|
|
|
|
# copy blas/include/cblas.h .
|
|
|
|
# copy blas/include/openblas_config.h .
|
|
|
|
# echo "blasdir=$env:GITHUB_WORKSPACE/blas" >> $env:GITHUB_ENV
|
|
|
|
#
|
|
|
|
# - name: Configure
|
|
|
|
# run: >
|
|
|
|
# cmake -S . -B ./build -A ${{ matrix.arch }}
|
|
|
|
# -DCMAKE_BUILD_TYPE=${{ matrix.build }}
|
|
|
|
# -DLLAMA_SUPPORT_OPENBLAS=${{ matrix.blas }}
|
|
|
|
# -DCMAKE_LIBRARY_PATH="$env:blasdir/lib"
|
|
|
|
#
|
|
|
|
# - name: Build
|
|
|
|
# run: |
|
|
|
|
# cd ./build
|
|
|
|
# msbuild ALL_BUILD.vcxproj -t:build -p:configuration=${{ matrix.build }} -p:platform=${{ matrix.arch }}
|
|
|
|
#
|
|
|
|
# - name: Copy libopenblas.dll
|
|
|
|
# if: matrix.blas == 'ON'
|
|
|
|
# run: copy "$env:blasdir/bin/libopenblas.dll" build/bin/${{ matrix.build }}
|
|
|
|
#
|
|
|
|
# - name: Upload binaries
|
|
|
|
# if: matrix.blas == 'ON'
|
|
|
|
# uses: actions/upload-artifact@v1
|
|
|
|
# with:
|
|
|
|
# name: llama-blas-bin-${{ matrix.arch }}
|
|
|
|
# path: build/bin/${{ matrix.build }}
|
|
|
|
#
|
|
|
|
# emscripten:
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
#
|
|
|
|
# strategy:
|
|
|
|
# matrix:
|
|
|
|
# build: [Release]
|
|
|
|
#
|
|
|
|
# steps:
|
|
|
|
# - name: Clone
|
2023-09-14 19:21:25 +02:00
|
|
|
# uses: actions/checkout@v3
|
2023-03-12 21:08:24 +01:00
|
|
|
#
|
|
|
|
# - name: Dependencies
|
|
|
|
# run: |
|
|
|
|
# wget -q https://github.com/emscripten-core/emsdk/archive/master.tar.gz
|
|
|
|
# tar -xvf master.tar.gz
|
|
|
|
# emsdk-master/emsdk update
|
|
|
|
# emsdk-master/emsdk install latest
|
|
|
|
# emsdk-master/emsdk activate latest
|
|
|
|
#
|
|
|
|
# - name: Configure
|
|
|
|
# run: echo "tmp"
|
|
|
|
#
|
|
|
|
# - name: Build
|
|
|
|
# run: |
|
|
|
|
# pushd emsdk-master
|
|
|
|
# source ./emsdk_env.sh
|
|
|
|
# popd
|
|
|
|
# emcmake cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build }}
|
|
|
|
# make
|