Is it possible to use TVM-runtime in a CentOS6 Linux machine without yum-install?

If I package all the runtime so-file and transfer the runtime so-file into the CentOS6 Linux machine. And use export LD_LIBRARY_PATH or java code System.load to find or load the so-file.

The gcc version of the CentOS6 Linux machine is 4.4.7

In fact, my goal is to accelerate the CPU inference speed in the Apache-Spark cluster. Each worker in the cluster is the CentOS6 with gcc-4.4.7 and I can’t run yum-install in the workers.

Thank you very much!

If you really have to run tvm on such an old system (gcc 4.4.7 doesn’t seem to fully support c++11), you may use compile tvm_runtime only, setup TVM RPC and do cross compilation.

Thank you. I will try.