Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

[Hexgaon] Use uploaded path to load module. #238

Merged
merged 1 commit into from
Sep 1, 2022
Merged
Show file tree
Hide file tree
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: 2 additions & 2 deletions python/tvm/contrib/hexagon/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,8 @@ def _relax_vm_executable_executor(
hexagon_arch="v68",
)

self.upload(path_exec, "exec.so")
return self._rpc.get_function("tvm.hexagon.load_module")("exec.so")
path = self.upload(path_exec, "exec.so")
return self._rpc.get_function("tvm.hexagon.load_module")(str(path))

def _aot_executor_from_factory(
self,
Expand Down
9 changes: 8 additions & 1 deletion tests/scripts/task_python_hexagon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ fi
export ANDROID_SERIAL_NUMBER=${device_serial}

# Only test integration with Relax
run_pytest ctypes python-contrib-hexagon tests/python/contrib/test_hexagon/test_relax_integration.py
# TODO(prakalp): Run the same tests on simulator and device once the bug with device is fixed.
if [[ "${device_serial}" == "simulator" ]];
then
run_pytest ctypes python-contrib-hexagon tests/python/contrib/test_hexagon/test_relax_integration.py
else
run_pytest ctypes python-contrib-hexagon tests/python/contrib/test_hexagon/test_relax_integration.py::test_conv2d
fi


if [[ "${device_serial}" == "simulator" ]]; then
kill ${TRACKER_PID}
Expand Down