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

lmzheng 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 54daa84  [AutoScheduler] Use a smaller retry number (#6996)
54daa84 is described below

commit 54daa849802e7e72fe4f33871ab7a1caf0fc1b85
Author: Lianmin Zheng <[email protected]>
AuthorDate: Sun Nov 29 15:19:38 2020 -0800

    [AutoScheduler] Use a smaller retry number (#6996)
---
 python/tvm/auto_scheduler/search_policy.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/tvm/auto_scheduler/search_policy.py 
b/python/tvm/auto_scheduler/search_policy.py
index ecf6af3..370de8f 100644
--- a/python/tvm/auto_scheduler/search_policy.py
+++ b/python/tvm/auto_scheduler/search_policy.py
@@ -147,7 +147,7 @@ class SketchPolicy(SearchPolicy):
 
     DEFAULT_PARAMS = {
         "eps_greedy": 0.05,
-        "retry_search_one_round_on_empty": 10,
+        "retry_search_one_round_on_empty": 1,
         "sample_init_min_population": 50,
         "sample_init_use_measured_ratio": 0.2,
         "evolutionary_search_population": 2048,

Reply via email to