forked from mlomb/ort-batcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 loc) · 906 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "ort_batcher"
version = "0.1.0"
edition = "2021"
description = "Small crate to batch inferences of ONNX models using ort (onnxruntime)"
authors = ["Martín Emiliano Lombardo <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/mlomb/ort-batcher"
keywords = ["batch", "ort", "onnxruntime"]
[dependencies]
flume = { version = "0.11.0", default-features = false }
ndarray = { version = "0.15.6", default-features = false }
ort = { git = "https://github.com/pykeio/ort", rev = "584a6e34", default-features = false, features = ["ndarray"] }
[dev-dependencies]
rand = "0.8.5"
ort = { git = "https://github.com/pykeio/ort", rev = "584a6e34", features = ["download-binaries", "fetch-models", "cuda"] }
divan = "0.1.2"
ndarray-rand = "0.14.0"
ndarray = { version = "0.15.6", features = ["approx"] }
tracing-subscriber = "0.3.18"
[[bench]]
name = "threads"
harness = false