This is an automated email from the ASF dual-hosted git repository.

MasterJH5574 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new f6e0f3e6fa [FIX][TIRx] Use typed buffer parameter in pointer config 
test (#20102)
f6e0f3e6fa is described below

commit f6e0f3e6fac4465d4eadf3c7c245ec519be4dea2
Author: Tianqi Chen <[email protected]>
AuthorDate: Thu Aug 6 20:45:28 2026 +0800

    [FIX][TIRx] Use typed buffer parameter in pointer config test (#20102)
---
 tests/python/tirx/transform/test_stmt_functor.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/python/tirx/transform/test_stmt_functor.py 
b/tests/python/tirx/transform/test_stmt_functor.py
index 3da352a18c..bf845c6516 100644
--- a/tests/python/tirx/transform/test_stmt_functor.py
+++ b/tests/python/tirx/transform/test_stmt_functor.py
@@ -1196,7 +1196,7 @@ def test_op_call_pointer_config_visited_and_mutated():
 
     op_call = copy_async.body
     assert isinstance(op_call, tir.TilePrimitiveCall)
-    mbar_buffer = copy_async.buffer_map[copy_async.params[2]]
+    mbar_buffer = copy_async.params[2]
 
     class LoadCollector(StmtExprVisitor):
         def __init__(self):

Reply via email to