Hello, tvmc provides the functionality to save a compiled model to a .tar
file after calling the compile
subcommand. Is there a way to do this though the TVM Python API after generating a tvm.module
library via relay.build(mod, target, params)
? Using the Python API, I want to be able to export the graph, parameters, and library in a TAR package before running inferences on the target hardware.
Thanks!