Is there a way to export relax or other imported pytorch/ONNX code into an executable file? I seem to be unable to find any documentation on the website for this.
Thanks in advance
Is there a way to export relax or other imported pytorch/ONNX code into an executable file? I seem to be unable to find any documentation on the website for this.
Thanks in advance
you should be able to call vm.export_library to export it to a so and then load back.
I understand that, but is there a way for me to run the .so as a standalone executable? As in using a local terminal on a machine that matches the vm ISA and then run it? Thanks.