Skip to content

Fix a bug in convolution for torch_xla2. Enable tests #1

Fix a bug in convolution for torch_xla2. Enable tests

Fix a bug in convolution for torch_xla2. Enable tests #1

Workflow file for this run

on:
pull_request:
branches:
- master
- r[0-9]+.[0-9]+
paths:
- 'experimental/torch_xla2/**'
push:
branches:
- master
- r[0-9]+.[0-9]+
paths:
- 'experimental/torch_xla2/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }}
cancel-in-progress: true
jobs:
test-cpu:
name: "TorchXLA2 tests"

Check failure on line 22 in .github/workflows/torch_xla2.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/torch_xla2.yml

Invalid workflow file

The workflow is not valid. .github/workflows/torch_xla2.yml (Line: 22, Col: 5): Required property is missing: runs-on
steps:
- name: Setup Linux
uses: pytorch/test-infra/.github/actions/setup-linux@main
- name: Setup SSH (Click me for login details)
uses: pytorch/test-infra/.github/actions/setup-ssh@main
with:
github-secret: ${{ secrets.GITHUB_TOKEN }}
instructions: |
Build is done inside the container, to start an interactive session run:
docker exec -it $(docker container ps --format '{{.ID}}') bash
- name: Checkout repo
uses: actions/checkout@v4
with:
sparse-checkout: |
experimental/torch_xla2/**
- name: Install
shell: bash
working-directory: experimental/torch_xla2
run: |
pip install -e .
pip install pytest
- name: Run tests
working-directory: experimental/torch_xla2
shell: bash
run: |
pytest test/
- name: Teardown Linux
uses: pytorch/test-infra/.github/actions/teardown-linux@main
if: always()