We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eb4265 commit 0bce505Copy full SHA for 0bce505
2 files changed
backends/qualcomm/tests/test_qnn_delegate.py
@@ -8380,6 +8380,8 @@ def test_cli_with_input_list_assignment(self):
8380
"--input_list",
8381
f"{tmp_dir}/input_list",
8382
]
8383
+ if self.host:
8384
+ cmds.extend(["--host", self.host])
8385
subprocess.run(cmds, stdout=subprocess.DEVNULL)
8386
output_file = f"{tmp_dir}/e_out/Result_0/output_0.pt"
8387
self.assertTrue(os.path.isfile(output_file))
examples/qualcomm/utils.py
@@ -906,7 +906,7 @@ def setup_common_args_and_variables():
906
"-H",
907
"--host",
908
help="hostname where android device is connected.",
909
- default="localhost",
+ default=None,
910
type=str,
911
)
912
0 commit comments