Open MehdiTantaoui-99 opened 2 weeks ago
I've met the same problem as well. Have you resolved it?
I found a solution. You have to setup the LLVM config before compiling the library:
cd tvm/build/
vi config.cmake
Set set(USE_LLVM llvm-config)
in the config.cmake
file. Then run:
cmake ..
make -j$(nproc)
This solved the issue for me.
I found a solution. You have to setup the LLVM config before compiling the library:
cd tvm/build/ vi config.cmake
Set
set(USE_LLVM llvm-config)
in theconfig.cmake
file. Then run:cmake .. make -j$(nproc)
This solved the issue for me.
Thanks!!! I'll try.
I found a solution. You have to setup the LLVM config before compiling the library:
cd tvm/build/ vi config.cmake
Set
set(USE_LLVM llvm-config)
in theconfig.cmake
file. Then run:cmake .. make -j$(nproc)
This solved the issue for me.
I'm sorry, but I have a few more questions. According to https://tvm.apache.org/docs/install/from_source.html, I need to execute the "echo "set(USE_LLVM \"llvm-config --ignore-libllvm --link-static\")" >> config.cmake" command,. Do you mean changing this command to "echo "set(USE_LLVM llvm-config)" >> config.cmake"? I have done this, but the problems above remain.
I installed tvm like instructed here: https://tvm.apache.org/docs/install/from_source.html
Once I run the test :
Expected behavior
Actual behavior
Environment
Steps to reproduce
Follow step on : https://tvm.apache.org/docs/install/from_source.html