forked from sonos/tract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1.07 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "tract-metal"
version = "0.21.9-pre"
license = "MIT OR Apache-2.0"
authors = [
"Hubert de La Jonquière <[email protected]>",
"Mathieu Poumeyrol <[email protected]>",
]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
repository = "https://github.com/snipsco/tract"
keywords = [ "TensorFlow", "NeuralNetworks", "Metal" ]
categories = [ "science" ]
autobenches = false
edition = "2021"
rust-version = "1.75"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
anyhow.workspace = true
block.workspace = true
derive-new.workspace = true
downcast-rs.workspace = true
foreign-types.workspace = true
log.workspace = true
metal.workspace = true
paste.workspace = true
objc = { version = "0.2.7" }
num-traits.workspace = true
tract-core.workspace = true
[features]
default = [ ]
[dev-dependencies]
criterion.workspace = true
proptest.workspace = true
rand.workspace = true
ggml = { git = "https://github.com/rustformers/llm.git", rev="9376078", features = ["metal"] }
[[bench]]
name = "metal_gemm"
harness = false