I have trained a pytorch model. I want to use it for inference on MIPS platform running embedded OS based on Linux. I am struggling to find necessary steps in Apache TVM docs. Here is what I have done so far:
- Translate pytorch model to TorchScript model as explained here
- Cross compiled TVM runtime for my MIPS platform as explained here.
However I am unable to find any further steps.
My target platform does not run python, but only C/C++. Does the documentation contain any example / tutorial that explain how can I deploy pytorch model using C++?