I installed tvm from the source code according to the official website and passed the Python-based installation verification steps.
Subsequently, I tried running this chapter from the tutorial: End-to-End Optimize Model — tvm 0.20.dev0 documentation.
To quickly verify it, I replaced the resnet18 imported from torchvision with the following simple Torch model:
class SimpleCNN(nn.Module): def init(self): super(SimpleCNN, self).init() self.conv1 = nn.Conv2d(1, 16, kernel_size=3, padding=1) self.relu = nn.ReLU()
def forward(self, x):
x = self.relu(self.conv1(x))
return x
And I modified TOTAL_TRIALS to 10.
However, at this step: ex = tvm.compile(mod, target=“cuda”), I encountered an error:
TVMError: Traceback (most recent call last):
0: operator()
at /home/cuijianhua/llm_workspace/mlc_workspace/learning_tvm/tvm/src/tir/analysis/verify_memory.cc:203
Did you forget to bind?
Variable p_conv1_bias
is directly accessed by host memory (it is not contained in a thread environment or in the function arguments.
Variable T_reshape
is directly accessed by host memory (it is not contained in a thread environment or in the function arguments.
File “/home/cuijianhua/learning_tvm/tvm/src/tir/analysis/verify_memory.cc”, line 203
RuntimeError: Memory verification failed with the following errors:
As a beginner, I’m very confused and don’t know where to start troubleshooting this kind of issue. Theoretically, I only modified a small, seemingly unimportant part of the tutorial, so why isn’t it working? Are there any relevant documents I can refer to? I couldn’t find effective help from Google or ChatGPT.