From: Cody Yu Date: Tue, 21 Jul 2020 14:52:17 +0000 (-0700) Subject: load empty config (#6100) X-Git-Tag: upstream/0.7.0~376 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79be0031cf6a53712a520cf8bed4a4e9919b75c4;p=platform%2Fupstream%2Ftvm.git load empty config (#6100) --- diff --git a/python/tvm/autotvm/record.py b/python/tvm/autotvm/record.py index 260edbb..5a61c34 100644 --- a/python/tvm/autotvm/record.py +++ b/python/tvm/autotvm/record.py @@ -209,13 +209,7 @@ def load_from_file(filename): ret = decode(row) if ret is None: continue - inp, res = ret - # Avoid loading the record with an empty config. The TOPI schedule with no entities - # will result in an empty entity map (e.g., depthwise_conv2d_nchw on x86). - # Using an empty config will cause problems when applying alter op like NCHW to NCHWc. - if not inp.config._entity_map: - continue - yield (inp, res) + yield ret def split_workload(in_file, clean=True):