You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
I'm cross compiling mxnet with USE_TVM_OP=ON for aarch64 on an x64_86 host. Everything went well, except for the last step where it's calling contrib/tvmop/compile.py where the python script imports the host (x64_86) tvm libtvm.so and attempts to build libtvmop.so. I have a target (aarch64) libtvm.so that I've just cross compiled but obviously that's not going to load on my x64_86 host..
How do I build libtvmop.so then? Why do we have a python compile.py and not cmakelist like the rest of the project?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm cross compiling mxnet with
USE_TVM_OP=ON
for aarch64 on an x64_86 host. Everything went well, except for the last step where it's callingcontrib/tvmop/compile.py
where the python script imports the host (x64_86) tvmlibtvm.so
and attempts to buildlibtvmop.so
. I have a target (aarch64)libtvm.so
that I've just cross compiled but obviously that's not going to load on my x64_86 host..How do I build
libtvmop.so
then? Why do we have a pythoncompile.py
and not cmakelist like the rest of the project?Beta Was this translation helpful? Give feedback.
All reactions