Reintroduce QTensor.quantize #181
Workflow file for this run
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
name: Linux CPU tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "optimum/quanto/**" | |
- "test/**" | |
- "pyproject.toml" | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
paths: | |
- "optimum/quanto/**" | |
- "test/**" | |
- "pyproject.toml" | |
jobs: | |
conventional-commits: | |
uses: ./.github/workflows/conventional-commits.yml | |
python-quality: | |
uses: ./.github/workflows/python-quality.yml | |
test-ubuntu-cpu: | |
needs: [conventional-commits, python-quality] | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.11"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Build and install quanto | |
run: | | |
pip install --upgrade pip | |
pip install torch==2.4.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/test/cpu | |
pip install -e .[dev] | |
- name: Run base tests | |
run: | | |
python -m pytest test --ignore=test/models --ignore=test/cli | |
- name: Run models tests | |
run: | | |
pip install accelerate transformers | |
python -m pytest test/models | |
- name: Run CLI tests | |
run: | | |
pip install optimum | |
python -m pytest test/cli |