Compare commits

...

4 Commits

Author SHA1 Message Date
Georgi Gerganov
5144018e7b cont : simplify 2026-02-07 14:50:05 +02:00
Georgi Gerganov
7703578f9a cont : fix the fix 2026-02-07 14:39:21 +02:00
Georgi Gerganov
0a9d4b1831 cont : fix nproc 2026-02-07 14:24:08 +02:00
Georgi Gerganov
b2f6a42e6b ci : use less jobs when building with sanitizers 2026-02-07 10:17:59 +02:00
2 changed files with 3 additions and 1 deletions

View File

@@ -295,6 +295,7 @@ jobs:
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON \
-DGGML_SANITIZE_${{ matrix.sanitizer }}=ON \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake --build build --config ${{ matrix.build_type }} -j $(nproc)
- name: Build (no OpenMP)
@@ -307,6 +308,7 @@ jobs:
-DGGML_SANITIZE_${{ matrix.sanitizer }}=ON \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-DGGML_OPENMP=OFF
cmake --build build --config ${{ matrix.build_type }} -j $(nproc)
- name: Test

View File

@@ -81,7 +81,7 @@ jobs:
-DLLAMA_SANITIZE_ADDRESS=${{ matrix.sanitizer == 'ADDRESS' }} \
-DLLAMA_SANITIZE_THREAD=${{ matrix.sanitizer == 'THREAD' }} \
-DLLAMA_SANITIZE_UNDEFINED=${{ matrix.sanitizer == 'UNDEFINED' }}
cmake --build build --config ${{ matrix.build_type }} -j ${env:NUMBER_OF_PROCESSORS} --target llama-server
cmake --build build --config ${{ matrix.build_type }} -j $(nproc) --target llama-server
- name: Python setup
id: setup_python