From 997ad21b9eee2fbbd9312b0dd582d2310b5cb3f0 Mon Sep 17 00:00:00 2001 From: thais Date: Fri, 11 Aug 2023 22:20:19 -0300 Subject: [PATCH] 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 51a74dae933d..767baf916d58 100644 --- a/python/tvm/auto_scheduler/search_task.py +++ b/python/tvm/auto_scheduler/search_task.py @@ -576,7 +576,7 @@ def __setstate__(self, state): # 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)