mehrdadh commented on code in PR #13161: URL: https://github.com/apache/tvm/pull/13161#discussion_r1002208815
########## python/tvm/contrib/hexagon/meta_schedule.py: ########## @@ -100,7 +101,7 @@ def run(self, runner_inputs: List[RunnerInput]) -> List[RunnerFuture]: def _worker_func(hexagon_launcher, evaluator_config, alloc_repeat, artifact_path, args_info): - with hexagon_launcher.start_session() as session: + with create_session(hexagon_launcher._workspace, hexagon_launcher._rpc_info) as session: Review Comment: `meta_schedule` is just creating a session and for that, we need to pass workspace and rpc_info from launcher to the session . I can make add `get` functions to HexagonLauncher instead of accessing them directory. wdyt? -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
