Ort Parallel
This crate is just a session pool for ONNX Runtime. It will load more sessions with the same configuration & packed weights until the pool is full.
Features
- sync
- async
Exmaple
Sync
let builder = new
.unwrap
.with_optimization_level
.unwrap;
let pool = commit_from_file.unwrap;
pool.run.unwrap;
Async
let builder = new
.unwrap
.with_optimization_level
.unwrap;
let pool = commit_from_file.unwrap;
pool.load_all.await.unwrap;
pool.run_async
.await
.unwrap;