Fix rewrite bug #164
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 install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Python application | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: 'triton_viz' | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Lint with pre-commit | |
run: | | |
cd triton_viz | |
pip install pre-commit | |
pre-commit run --all-files | |
- name: Install Dependencies | |
if: steps.cache-pip.outputs.cache-hit != 'true' | |
run: | | |
pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121 | |
pip uninstall pytorch-triton -y | |
- name: Clone Triton and Install | |
run: | | |
git clone https://github.com/openai/triton.git | |
cd triton/python | |
pip install -e . | |
- name: Install Triton-Viz | |
run: | | |
cd triton_viz | |
pip install -e . | |
- name: Test with pytest | |
run: | | |
cd triton_viz | |
python -m pytest examples |