[python][utils] MemRef Manager #2
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: Lighthouse Examples | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| jobs: | |
| Examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install the project and its dependencies | |
| run: | | |
| 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 | |
| - name: Run MemRef Management | |
| run: |- | |
| uv run python/examples/mlir/memref_management.py |