tilelang.carver.common_schedules module#
Common schedule strategies for TIR.
- tilelang.carver.common_schedules.get_block(sch: Schedule, blocks: List[BlockInfo], name: str)#
Get the target block from a schedule.
- Parameters:
sch (tir.Schedule) – The TIR schedule used to get target block.
name (str) – The name of the target block.
- Returns:
target_block – The target block.
- Return type:
BlockRV
- tilelang.carver.common_schedules.get_output_blocks(sch: Schedule, blocks: List[BlockInfo])#
Get the output blocks of a schedule.
- tilelang.carver.common_schedules.try_inline(sch: Schedule, blocks: List[BlockInfo]) List[BlockInfo] #
Try to inline as many blocks as possible, and return the remaining blocks.