jasaw opened a new issue #20656: URL: https://github.com/apache/incubator-mxnet/issues/20656
## Description I can cross compile successfully without TVM_OP, but when I turn on TVM_OP, the post build step calls `contrib/tvmop/compile.py` where the python script imports `tvm` which loads the `libtvm.so` file. Problem here is the cross compiled `libtvm.so` file is for Aarch64 target which won't load on x64_86 host that does the cross compilation. This `contrib/tvmop/compile.py` file basically pulls all the supported operators and generates a `my_kernel.cu` cuda source file and uses `nvcc` to compile and `g++` to link into `libtvmop.so` file. `contrib/tvmop/compile.py` also generates `tvmop.conf`. Question is, how do I cross compile this step? -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
