Rust bindings to onnxruntime
Go to file
2020-05-16 11:56:30 +02:00
cbits Move everything to one crate 2020-05-16 11:56:30 +02:00
src Move everything to one crate 2020-05-16 11:56:30 +02:00
.gitignore Setup rust bindinds 2020-05-16 11:56:29 +02:00
build.rs Move everything to one crate 2020-05-16 11:56:30 +02:00
Cargo.lock Move everything to one crate 2020-05-16 11:56:30 +02:00
Cargo.toml Move everything to one crate 2020-05-16 11:56:30 +02:00
README.md Move everything to one crate 2020-05-16 11:56:30 +02:00

onnxruntime

This crate contains bindings to onnxruntime.

In order to build/use this crate you must either have onnxruntime installed on your system or build the onnxruntime project from source.

To build from source (Linux) do the following from the root of the repo:

./build.sh --config RelWithDebInfo --build_shared_lib --parallel
export ONNXRUNTIME_LIB_DIR=$PWD/build/Linux/RelWithDebInfo/
export ONNXRUNTIME_INCLUDE_DIR=$PWD/include/onnxruntime/core/session/
export LD_LIBRARY_PATH=$ONNXRUNTIME_LIB_DIR:$LD_LIBRARY_PATH