feat: add missing backend runtime bindings #903
Workflow file for this run
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
| name: Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "recursive" | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools | |
| python3 -m pip install \ | |
| --verbose \ | |
| --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' \ | |
| --config-settings cmake.verbose=true \ | |
| --config-settings logging.level=INFO \ | |
| --config-settings install.strip=false \ | |
| --editable . | |
| - name: Test with pytest | |
| run: | | |
| python -m pytest -s -vvvv | |
| build-linux-onnx: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "recursive" | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools | |
| python3 -m pip install \ | |
| --verbose \ | |
| --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' \ | |
| --config-settings cmake.verbose=true \ | |
| --config-settings logging.level=INFO \ | |
| --config-settings install.strip=false \ | |
| --editable ".[test,onnx,onnx-tests]" | |
| - name: Test ONNX backend | |
| run: | | |
| python -m pytest -s -vvvv tests/test_ggml_onnx.py | |
| build-windows: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "recursive" | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools | |
| python3 -m pip install --verbose --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3' --config-settings cmake.verbose=true --config-settings logging.level=INFO --config-settings install.strip=false --editable . | |
| - name: Test with pytest | |
| run: | | |
| python -m pytest -s -vvvv | |
| build-macos: | |
| runs-on: macos-15 | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "recursive" | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pip" | |
| - name: System Info | |
| run: | | |
| uname -a | |
| sysctl -n machdep.cpu.brand_string | |
| python3 -c "import platform; print(platform.machine(), platform.architecture())" | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools | |
| python3 -m pip install \ | |
| --verbose \ | |
| --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3;-DGGML_NATIVE=off;-DGGML_METAL=OFF' \ | |
| --config-settings cmake.verbose=true \ | |
| --config-settings logging.level=INFO \ | |
| --config-settings install.strip=false \ | |
| --editable . | |
| - name: Test with pytest | |
| run: | | |
| python -m pytest -s -vvvv | |
| build-macos-intel: | |
| runs-on: macos-15-intel | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "recursive" | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.9" | |
| cache: "pip" | |
| - name: System Info | |
| run: | | |
| uname -a | |
| sysctl -n machdep.cpu.brand_string | |
| python3 -c "import platform; print(platform.machine(), platform.architecture())" | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools | |
| python3 -m pip install \ | |
| --verbose \ | |
| --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3;-DGGML_NATIVE=off;-DGGML_METAL=OFF' \ | |
| --config-settings cmake.verbose=true \ | |
| --config-settings logging.level=INFO \ | |
| --config-settings install.strip=false \ | |
| --editable . | |
| - name: Test with pytest | |
| run: | | |
| python -m pytest -s -vvvv | |
| build-macos-metal: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "recursive" | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.9" | |
| cache: "pip" | |
| - name: System Info | |
| run: | | |
| uname -a | |
| sysctl -n machdep.cpu.brand_string | |
| python3 -c "import platform; print(platform.machine(), platform.architecture())" | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools | |
| python3 -m pip install \ | |
| --verbose \ | |
| --config-settings cmake.args='-DCMAKE_BUILD_TYPE=Debug;-DCMAKE_CXX_FLAGS=-g3;-DCMAKE_C_FLAGS=-g3;-DGGML_NATIVE=off;-DGGML_METAL=On' \ | |
| --config-settings cmake.verbose=true \ | |
| --config-settings logging.level=INFO \ | |
| --config-settings install.strip=false \ | |
| --editable . | |
| - name: Test with pytest | |
| run: | | |
| python -m pytest -s -vvvv |