This is an automated email from the ASF dual-hosted git repository.
tlopex 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 d23d1dbc24 fix: correct typos in Python docstrings (#18727)
d23d1dbc24 is described below
commit d23d1dbc248efe80d4d37ce6a39ec8b701191118
Author: thecaptain789 <[email protected]>
AuthorDate: Sat Feb 7 20:32:21 2026 +0000
fix: correct typos in Python docstrings (#18727)
Fixed 'occured' to 'occurred' in transform.py and 'seperated' to
'separated' in mrvl.py.
Co-authored-by: thecaptain789 <[email protected]>
---
python/tvm/contrib/mrvl.py | 4 ++--
python/tvm/relax/transform/transform.py | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/python/tvm/contrib/mrvl.py b/python/tvm/contrib/mrvl.py
index 996f6f8818..1c016c3945 100644
--- a/python/tvm/contrib/mrvl.py
+++ b/python/tvm/contrib/mrvl.py
@@ -207,7 +207,7 @@ def get_nodes_json_string(graph_json):
@tvm_ffi.register_global_func("tvm.mrvl.ModifyConstNames")
def modify_const_names(nodes_json_str, consts_json_str):
- """This takes the graph module returned by build an generates nodes and
constant
+ """This takes the graph module returned by build and generates nodes and
constant
meta data suitable for compilation by the back end.
Parameters
@@ -222,7 +222,7 @@ def modify_const_names(nodes_json_str, consts_json_str):
-------
modified_nodes_consts: string
This returns a concatenated string of the nodes_json and modified
- consts json file, seperated by a delimiter |. The modification to the
+ consts json file, separated by a delimiter |. The modification to the
consts file is necessary since we have added the Merge Compiler Pass
which names the constants in a form unsuitable for the backend.
"""
diff --git a/python/tvm/relax/transform/transform.py
b/python/tvm/relax/transform/transform.py
index a352c4555c..5be0401111 100644
--- a/python/tvm/relax/transform/transform.py
+++ b/python/tvm/relax/transform/transform.py
@@ -1618,13 +1618,13 @@ def AllocateWorkspace() -> tvm.ir.transform.Pass:
def SpecializePrimFuncBasedOnCallSite() -> tvm.ir.transform.Pass:
"""This pass updates the var_buffer mapping of PrimFunctions from the
call_tir info.
- Primarily used to update the VDevice information if any changes occured
from the caller.
+ Primarily used to update the VDevice information if any changes occurred
from the caller.
This pass recreates the buffers and updates the map.
Returns
-------
ret: tvm.ir.transform.Pass
- The registered pass for allocating workspace.
+ The registered pass for specializing PrimFuncs based on call site.
"""
return _ffi_api.SpecializePrimFuncBasedOnCallSite() # type: ignore