Fix GPTQ CPU memory consumption #36
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
# This workflow will upload a Python Package to Release asset | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Build Test | |
on: | |
# push or pull request to main or dev branch | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Free disk space | |
run: | | |
sudo rm -rf /usr/local/cuda-* /opt/cuda | |
sudo rm -rf /usr/local/cuda | |
bash -x .github/workflows/scripts/free-disk-space.sh | |
- name: Cache Python packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install CUDA 11.7 | |
run: | | |
bash -x .github/workflows/scripts/cuda-install.sh 11.7 ubuntu-20.04 | |
- name: Install build dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install build | |
- name: Build package | |
run: BUILD_OPS=1 python -m build |