Quantization with float 8 (#42) #7
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: Build Wheel Windows | |
on: | |
push: | |
branches: | |
- main | |
- 'releases/**' | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
# Used to host cibuildwheel | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel | |
- name: python version | |
run: python -V | |
- name: Build wheels | |
run: python -m cibuildwheel | |
# to supply options, put them in 'env', like: | |
# env: | |
# CIBW_BUILD: cp310-win_amd64* cp311-win_amd64* | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl |