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}