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

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

commit 76ceff2c5e00de70cd3c7fc690dae054188405f9
Author: LeiWang <[email protected]>
AuthorDate: Wed Jan 3 13:13:12 2024 -0400

    fix typo
---
 python/tvm/tir/transform/transform.py                 | 2 +-
 src/tir/transforms/merge_shared_memory_allocations.cc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/python/tvm/tir/transform/transform.py 
b/python/tvm/tir/transform/transform.py
index de61823cdf..ba6b5974e2 100644
--- a/python/tvm/tir/transform/transform.py
+++ b/python/tvm/tir/transform/transform.py
@@ -1001,7 +1001,7 @@ def UnifyThreadBinding():
 
 
 def MergeSharedMemoryAllocations():
-    """This pass merges multiple TIR-level dynamic shared memory allocations
+    """This pass merges multiple TIR-level shared memory allocations
     into one allocation.
 
     Returns
diff --git a/src/tir/transforms/merge_shared_memory_allocations.cc 
b/src/tir/transforms/merge_shared_memory_allocations.cc
index 207d3c5dac..c3a43a6b3a 100644
--- a/src/tir/transforms/merge_shared_memory_allocations.cc
+++ b/src/tir/transforms/merge_shared_memory_allocations.cc
@@ -20,7 +20,7 @@
 /*!
  * \file merge_shared_memory_allocations.cc
  * \brief Each GPU kernel is allowed to have only one dynamic or static shared 
memory allocation.
- * This pass merges multiple TIR-level dynamic or shared memory allocations 
into one allocation.
+ * This pass merges multiple TIR-level dynamic or static shared memory 
allocations into one allocation.
  */
 #include <tvm/runtime/registry.h>
 #include <tvm/tir/expr.h>

Reply via email to