FrozenGene commented on a change in pull request #7053:
URL: https://github.com/apache/tvm/pull/7053#discussion_r538062449
##########
File path: python/tvm/auto_scheduler/auto_schedule.py
##########
@@ -136,9 +159,14 @@ def __init__(
if isinstance(runner, str):
if runner == "local":
- runner = LocalRunner()
+ runner = LocalRunner(working_dir=self.temp_working_dir)
else:
raise ValueError("Invalid runner: " + runner)
+
+ elif isinstance(runner, RPCRunner):
+ rpc_kwargs = runner.kwargs
+ rpc_kwargs["working_dir"] = self.temp_working_dir
Review comment:
How this argument be used later? I can not find any logic to handle this
parameter...
----------------------------------------------------------------
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]