Bump torch-mlir version (CPU) #1
Workflow file for this run
This file contains hidden or 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: Torch Examples | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Project set-up | |
| run: | | |
| pip install uv | |
| uv venv | |
| uv sync | |
| uv sync --extra ingress-torch-cpu | |
| - name: Run MLP From File | |
| run: uv run python/examples/ingress/torch/mlp_from_file.py | |
| - name: Run MLP From Module | |
| run: uv run python/examples/ingress/torch/mlp_from_model.py |