Rust bindings to onnxruntime
Go to file
Basile Henry d999026b33
Merge pull request #15 from basile-henry/ci-1.4.0
Build with release 1.4.0 in CI
2020-08-23 16:27:18 +02:00
.github Build with release 1.4.0 in CI 2020-08-23 15:00:41 +01:00
cbits Expect the C headers in a different location 2020-07-05 23:16:07 +02:00
examples Move run to bin so that the nix derivation builds it 2020-05-31 22:27:15 +01:00
nix niv update 2020-07-05 23:41:48 +02:00
src Fix some cargo clippy hints 2020-07-05 23:50:39 +02:00
testdata Add testdata to repo 2020-05-31 09:13:59 +01:00
.gitignore Setup cargo actions 2020-07-05 17:32:38 +02:00
build.rs Fix some cargo clippy hints 2020-07-05 23:50:39 +02:00
Cargo.lock Run the model multiple times and on multiple threads in run example 2020-05-31 20:23:00 +01:00
Cargo.toml Move run to bin so that the nix derivation builds it 2020-05-31 22:27:15 +01:00
default.nix Expect the C headers in a different location 2020-07-05 23:16:07 +02:00
LICENSE Add MIT license 2020-05-31 09:58:02 +01:00
README.md Point to standard include path in README 2020-05-31 17:22:29 +01: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
export LD_LIBRARY_PATH=$ONNXRUNTIME_LIB_DIR:$LD_LIBRARY_PATH

License

MIT License

Copyright 2020 Basile Henry, Chris Chalmers