Kushagra-88
Results
2
comments of
Kushagra-88
For relax.build() to work properly, it expects the model to be lowered to TensorIR before compilation. Before calling relax.build(), add this transformation: tvm_model = relax.transform.LowerToTensorIR()(tvm_model) It should work.
I am facing the same issue.. Is there something i am missing?