From a8358d77534d12e0d66159f63f1fa15ce1ea6b2c Mon Sep 17 00:00:00 2001 From: Wang Yao Date: Fri, 19 Jul 2019 10:40:14 -0700 Subject: [PATCH] Improve warning. --- python/tvm/autotvm/graph_tuner/dynamic_programming_tuner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/tvm/autotvm/graph_tuner/dynamic_programming_tuner.py b/python/tvm/autotvm/graph_tuner/dynamic_programming_tuner.py index ba3df5c82b59..e3e4d1137afd 100644 --- a/python/tvm/autotvm/graph_tuner/dynamic_programming_tuner.py +++ b/python/tvm/autotvm/graph_tuner/dynamic_programming_tuner.py @@ -95,6 +95,7 @@ def _backward(self): msg = "The number of outputs in graph is larger than upper " \ "limit: %s vs %s. Usually this is caused by too many " \ "LAYOUT_FIXED_OP in graph. Switch to greedily select schedule." \ + "No action required at this moment. We will continuously improve graph tuner" \ % (len(output_idx_list), MAX_OUTPUT_NODES) self._logger.warning(msg) self._optimal_record_dict = {key : 0 for key in self._in_nodes_dict}