farshidsp commented on code in PR #12368:
URL: https://github.com/apache/tvm/pull/12368#discussion_r943687312
##########
python/tvm/contrib/hexagon/pytest_plugin.py:
##########
@@ -260,9 +261,21 @@ def aot_target(aot_host_target):
assert False, "Incorrect AoT host target: {aot_host_target}. Options
are [c, llvm]."
[email protected](scope="session")
+def skip_rpc(request) -> bool:
+ return request.config.getoption("--skip-rpc")
+
+
def pytest_addoption(parser):
parser.addoption("--gtest_args", action="store", default="")
+ parser.addoption(
+ "--skip-rpc",
+ action="store_true",
+ default=False,
+ help="If set true, a new hexagon launcher is not created",
Review Comment:
Thanks. Done.
--
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]