This is an automated email from the ASF dual-hosted git repository.
echuraev 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 2b718e5d00 Fixed search task comment (#15535)
2b718e5d00 is described below
commit 2b718e5d00948f56b880d14e13ab9fb3bad26a54
Author: Thais Camacho <[email protected]>
AuthorDate: Mon Aug 14 11:13:45 2023 -0300
Fixed search task comment (#15535)
fixed search task comment
---
python/tvm/auto_scheduler/search_task.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/tvm/auto_scheduler/search_task.py
b/python/tvm/auto_scheduler/search_task.py
index 51a74dae93..767baf916d 100644
--- a/python/tvm/auto_scheduler/search_task.py
+++ b/python/tvm/auto_scheduler/search_task.py
@@ -576,7 +576,7 @@ class SearchTask(Object):
# workload[0] is either the compute function name or the ComputeDAG
hash.
# The compute functions are already registered when importing TVM, so
here
# we only register the ComputeDAG workloads. If the same workload has
- # already been registered, the later registration overrides the
prvious one.
+ # already been registered, the later registration overrides the
previous one.
if workload[0] not in WORKLOAD_FUNC_REGISTRY:
register_workload_tensors(state["workload_key"],
state["compute_dag"].tensors)