forked from luminal-ai/luminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (54 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
58 lines (54 loc) · 1.23 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "luminal"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
description = "Deep learning at the speed of light."
license = "MIT OR Apache-2.0"
[dependencies]
itertools = "0.11.0"
num-traits = "0.2.16"
petgraph = "0.6.4"
rand = "0.9.2"
urlencoding = "2.1.2"
webbrowser = "1.0.0"
dyn-clone = "1.0.12"
half = "*"
tinyvec = { version = "1.6.0", features = ["serde"] }
term_size = "0.3.2"
colored = "2.0.4"
regex = "1.9.5"
rustc-hash = "2.1.1"
uuid = { version = "1.7.0", features = ["v4"] }
as-any = "0.3.1"
egg = "0.9.5"
symbolic_expressions = "5.0.3"
serde = { version = "1.0.202", features = ["derive"] }
thread_local = "1.1.8"
generational-box = "0.5.6"
serde_json = "1.0.140"
egglog = "1.0.0"
egglog-ast = "1.0.0"
egraph-serialize = "0.3.0"
tracing = "0.1.43"
paste = "1.0.15"
[target.'cfg(target_os = "macos")'.dependencies]
metal-rs = "0.10.6"
[dev-dependencies]
dfdx = { version = "0.13", features = ["f16"] }
[workspace]
members = [
"examples/llama",
#"examples/*",
"crates/luminal_nn",
"crates/luminal_cuda",
"crates/luminal_training",
"docs/company",
]
exclude = [
"examples/yolo_v8",
"crates/luminal_cuda",
"crates/luminal_metal",
"crates/luminal_2",
"demos/flash_attention",
]