This folder contain golang interface for TVM runtime. It brings TVM runtime to Golang.
- It enable c runtime api of tvm exposed to golang.
- It enables module loading (lib, graph and params) and inference operations.
- go compiler (https://golang.org/) version 0.10 or above.
-
src Module that generates golang package corresponding to the c runtime api exposed from tvm source tree. This process build golang package gotvm.a
-
samples Sample golang reference application to inference through gotvm package.
Once the Requirements are installed
To build gotvm package
makeTo build and run internal tests
make testsTo build sample apps.
make samplesTo Demonstrates sample TVM module compilation using python and deploy via golang.
./simpleTo deploy a realtime module with lib, graph and param.
python3 gen_mobilenet_lib.py
./complexTo demonstrate go function closure conversion to packed function handle.
./pack_func_convertTo demonstrate a packed function handle given as an argument.
./pack_func_handle_argTo register go function with runtime as a global function.
./pack_func_registerTo demonstrate function closure passed as argument to a function call.
./pack_func_closure_argTo demonstrate function closure returned from a packed function.
./pack_func_closure_returngotvm.go is documented with sufficient information about gotvm package. A html version documentation can be accessed by running below command after building runtime.
godoc -http=:6060 -goroot=./gopathAfter above command try http://127.0.0.1:6060 from any browser.
Also please refer to the sample applications under sample folder.
Docker setup may need below additions for dependencies and environment preparation.
Please refer docker/install/ubuntu_install_golang.sh for the packages dependencies.
go compiler 1.10 on ubuntu doesn't install on standard path, hence an explicit export may be needed as shown below.
export PATH="/usr/lib/go-1.10/bin:$PATH"