Skip to content

Commit

Permalink
ci : add CLBlast build (#513)
Browse files Browse the repository at this point in the history
* added clblast test to ci

* moved threads to env

* changed name

* upgraded checkout to v3
  • Loading branch information
dc-dc-dc committed Sep 8, 2023
1 parent 968d132 commit e77653a
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,44 @@ on:
branches: [ master ]

jobs:
test-ubuntu-opencl:
runs-on: ubuntu-latest
env:
GGML_NLOOP: 3
GGML_NITER: 1
GGML_N_THREADS: 2

steps:
- uses: actions/checkout@v3

- name: Dependencies
run: |
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
sudo apt-get update
sudo apt-get install -y --no-install-recommends llvm intel-oneapi-runtime-opencl intel-oneapi-runtime-compilers libclblast-dev
- name: Create Build Environment
run: mkdir build

- name: Configure CMake
working-directory: ./build
run: cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DGGML_TEST_COVERAGE=ON -DGGML_CLBLAST=ON ..

- name: Build
working-directory: ./build
run: make

- name: Test
working-directory: ./build
run: ctest --verbose --timeout 900

- name: Test Coverage
working-directory: ./build
run: |
llvm-profdata merge -sparse tests/*.profraw -o ggml.profdata
llvm-cov report ./bin/test-grad0 -instr-profile=ggml.profdata
llvm-cov report ./bin/test-opt -instr-profile=ggml.profdata
build:

strategy:
Expand All @@ -20,7 +58,7 @@ jobs:
GGML_NITER: 1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Dependencies for Ubuntu
if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit e77653a

Please sign in to comment.