Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/ir.cc
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ ForFrame PipelinedFor(PrimExpr start, const PrimExpr &stop, int num_stages,
anno.Set("tl_pipeline_order", order);
if (!stages.empty())
anno.Set("tl_pipeline_stage", stages);
if (!sync.empty())
anno.Set("tl_pipeline_sync", sync);
if (!groups.empty())
anno.Set("tl_pipeline_group", groups);
Optional<PrimExpr> step =
Expand Down
2 changes: 1 addition & 1 deletion tilelang/analysis/nested_loop_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def is_pipelined_for(op: For) -> bool:
"""Check if a for loop is pipelined."""

anno_keys = ["num_stages", "tl_pipeline_order", "tl_pipeline_stage", "tl_pipeline_sync", "tl_pipeline_group"]
anno_keys = ["num_stages", "tl_pipeline_order", "tl_pipeline_stage", "tl_pipeline_group"]
return any(key in op.annotations for key in anno_keys)


Expand Down