Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion python/tvm/contrib/hexagon/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,9 @@ def _copy_to_remote(
self, local_path: Union[str, pathlib.Path], remote_path: Union[str, pathlib.Path]
):
"""Abstract method implementation. See description in HexagonLauncherRPC."""
subprocess.check_call(self._adb_device_sub_cmd + ["push", str(local_path), str(remote_path)])
subprocess.check_call(
self._adb_device_sub_cmd + ["push", str(local_path), str(remote_path)]
)

def _create_remote_directory(self, remote_path: Union[str, pathlib.Path]):
"""Abstract method implementation. See description in HexagonLauncherRPC."""
Expand Down