tilelang.language.parallel ========================== .. py:module:: tilelang.language.parallel .. autoapi-nested-parse:: The language interface for tl programs. Functions --------- .. autoapisummary:: tilelang.language.parallel.Parallel Module Contents --------------- .. py:function:: Parallel(*extents, coalesced_width = None) Tools to construct nested parallel for loop. This can be used to create element-wise tensor expression. :param extents: The extents of the iteration. :type extents: PrimExpr :param coalesced_width: The coalesced width of the parallel loop. :type coalesced_width: Optional[int] :returns: **res** -- The ForFrame. :rtype: frame.ForFrame