Skip to content

Commit fe03285

Browse files
committed
Final cleanup
1 parent abc7403 commit fe03285

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ jobs:
3333
3434
- name: Run apply basic schedule to basic payload
3535
run: |-
36-
uv run python/examples/schedule/transform_a_payload_according_to_a_schedule.py
36+
uv run python/examples/schedule/transform_a_payload_according_to_a_schedule.py

python/examples/mlir/compile_and_run.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# RUN: %PYTHON %s
2-
31
import torch
42
import argparse
53

python/examples/schedule/transform_a_payload_according_to_a_schedule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def example_schedule() -> Module:
7373
with Context(), Location.unknown():
7474
payload = example_payload()
7575
schedule_module = example_schedule()
76-
# Actual schedule is defined by the contained transfomr.named_sequence:
76+
# Actual schedule is defined by the contained transform.named_sequence:
7777
schedule: transform.NamedSequenceOp = schedule_module.body.operations[0]
7878

7979
schedule.apply(payload) # The actual transformation happens here.

0 commit comments

Comments
 (0)