bumped minor pytorch version #16
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: Create Release | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
wheel: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['ubuntu-20.04'] | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
pytorch-version: ['2.4.1'] | |
cuda-version: ['11.8', '12.1'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Linux Env | |
if: ${{ runner.os == 'Linux' }} | |
run: | | |
bash -x .github/workflows/scripts/env.sh | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install CUDA ${{ matrix.cuda-version }} | |
run: | | |
bash -x .github/workflows/scripts/cuda-install.sh ${{ matrix.cuda-version }} ${{ matrix.os }} | |
- name: Install PyTorch ${{ matrix.pytorch-version }} with CUDA ${{ matrix.cuda-version }} | |
run: | | |
bash -x .github/workflows/scripts/pytorch-install.sh ${{ matrix.python-version }} ${{ matrix.pytorch-version }} ${{ matrix.cuda-version }} | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
- name: Build wheel | |
shell: bash | |
run: | | |
bash -x .github/workflows/scripts/cutlass-install.sh | |
bash -x .github/workflows/scripts/build.sh ${{ matrix.python-version }} ${{ matrix.cuda-version }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.pytorch-version }}-${{ matrix.cuda-version }} | |
path: ./wheelhouse/*.whl |