comaniac commented on a change in pull request #4644: [WIP] Relay op strategy
URL: https://github.com/apache/incubator-tvm/pull/4644#discussion_r373142087
##########
File path: python/tvm/autotvm/task/dispatcher.py
##########
@@ -481,8 +412,12 @@ def _query_inside(self, target, workload):
"""
if self._counter < len(self._records):
cfg = self._records[self._counter][0].config
+ wkl = self._records[self._counter][0].task.workload
+ if workload is not None:
+ assert wkl == workload
self._counter += 1
- self.update(target, workload, cfg)
+ self.update(target, wkl, cfg)
+ cfg.workload = wkl
Review comment:
I see. Could we define `self.workload` in `ConfigSpace` and add your comment
on it? So that we will remember to remove it in the future.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services