-
Notifications
You must be signed in to change notification settings - Fork 12
36 lines (28 loc) · 861 Bytes
/
examples.yml
File metadata and controls
36 lines (28 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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 Compile And Run
run: |-
uv run python/examples/mlir/compile_and_run.py
- name: Run apply basic schedule to basic payload
run: |-
uv run python/examples/schedule/transform_a_payload_according_to_a_schedule.py