Hello!! I am new to working with compilers, while installing TVM and Cmake, I could not find Cmake/Config.cmake, instead there is CTestConfig.cmake. I would like to know if both are the same and if so, should I add this line " export TVM_LOG_DEBUG=“ir/transform.cc=1;relay/ir/transform.cc=1"” in the same CTestConfig.cmake file? Kindly help Thanks in advance
Are you following the instructions here: Install from Source — tvm 0.9.dev0 documentation?
Assuming you have the cmake
executable installed, the instructions assume you are working from inside a git checkout of TVM, so:
git clone https://github.com/apache/tvm.git
cd tvm
then you will find the referenced cmake/config.cmake
(i.e. this file).
To enable debug mode for relay (i.e. to use TVM_LOG_DEBUG
), you must build with the USE_RELAY_DEBUG
flag on. So either add set(USE_RELAY_DEBUG ON)
to the end of your cmake config or invoke cmake with cmake -DUSE_RELAY_DEBUG=ON ..
I don’t know too much about Jetson development so I can’t say, however some quick searching turned up this article which may be helpful: Fan waier, playing TVM on Jetson nano - 文章整合
I have a follow up query, I managed to install TVM and LLVM but I’m trying to install tvm as a conda package using the command
conda build --output-folder=conda/pkg conda/recipe
But I’m getting a error as follows
I installed Python and it’s packages already. I’m not sure what the problem is.
Kindly help. Thanks in advance