tilelang.language.pipeline ========================== .. py:module:: tilelang.language.pipeline .. autoapi-nested-parse:: The language interface for tl programs. Functions --------- .. autoapisummary:: tilelang.language.pipeline.Pipelined Module Contents --------------- .. py:function:: Pipelined(start, stop = None, num_stages = 0, order = None, stage = None, sync = None, group = None) Tools to construct pipelined for loop. :param start: The minimum value of iteration. :type start: PrimExpr :param stop: The maximum value of iteration. :type stop: PrimExpr :param num_stages: The max number of buffer used between pipeline producers and consumers. if num_stages is 0, pipeline will not be enabled. :type num_stages: int :returns: **res** -- The ForFrame. :rtype: frame.ForFrame