I am following this topic, trying to install TVM EP on my virtual environment:
In which i have successfully clone onnxruntime repo and build these:
./build.sh --config Release --enable_pybind --build_wheel --parallel --skip_tests --skip_onnx_tests --use_tvm
./build.sh --config Release --enable_pybind --build_wheel --parallel --skip_tests --skip_onnx_tests --use_tvm --tvm_cuda_runtime
Then i build the python API like in the instruction:
For TVM: cd <path_to_onnx_runtime> python3 -m pip uninstall tvm -y whl_path=$(find ./build/<OS_NAME>/Release/_deps/tvm-src/python/dist -name “*.whl”) python3 -m pip install $whl_path
For TVM EP:
cd <path_to_onnx_runtime> python3 -m pip uninstall onnxruntime onnxruntime-tvm -y whl_path=$(find ./build/<OS_NAME>/Release/dist -name “*.whl”) python3 -m pip install $whl_path
Then I just try importing onnxruntime and this happened:
Could somebody help me?