Unverified Commit b10ef75f authored by Chaofan Lin's avatar Chaofan Lin Committed by GitHub
Browse files

[Analysis] Enhance NestedLoopChecker with tile op cases (#1358)

* [Analysis] Enhance NestedLoopChecker with tile op cases

* fix tileop issue
parent 1b42c87b
......@@ -7,7 +7,7 @@ from tilelang import language as T
def region(buffer: BufferLoad, access_type: str, *args: PrimExpr):
"""Create a tl.region call for a BufferLoad and extents."""
access_type = {"r": 1, "w": 2, "rw": 3}[access_type]
return T.call_intrin("handle", op.Op.get("tl.region"), buffer, access_type, *args)
return T.call_intrin("handle", op.Op.get("tl.tileop.region"), buffer, access_type, *args)
def buffer_load_to_tile_region(load: BufferLoad, access_type: str, extents: list[PrimExpr]):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment