-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathCargo.toml
More file actions
102 lines (88 loc) · 3.19 KB
/
Copy pathCargo.toml
File metadata and controls
102 lines (88 loc) · 3.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[workspace]
resolver = "2"
members = [
# CUDA C-API Bindings.
"cuda-bindings",
# Safe CUDA API. Uses cuda-bindings.
"cuda-core",
"cuda-core-derive",
# Async CUDA API. Uses cuda-core.
"cuda-async",
# cuTile Rust compiler. Requires cutile-ir + cuda-async.
"cutile-compiler",
# cuTile Rust macros. Requires cutile-compiler.
"cutile-macro",
# Pure Rust Tile IR representation and bytecode writer.
"cutile-ir",
# Main package (cuTile Rust). Requires cuda-async + cutile-compiler + cutile-macro
"cutile",
# Examples and benchmarks.
"cutile-examples",
"cutile-benchmarks",
# Reusable cuTile Rust kernels.
"cutile-kernels",
# Thin wrapper around the cuda-tile C++ library; excluded from
# default-members because its build downloads and compiles LLVM.
"cuda-tile-rs",
]
default-members = [
"cuda-bindings",
"cuda-core",
"cuda-async",
"cutile-compiler",
"cutile-macro",
"cutile-ir",
"cutile",
"cutile-kernels",
"cutile-examples",
"cutile-benchmarks",
]
[workspace.package]
version = "0.3.1"
edition = "2021"
rust-version = "1.89"
license = "Apache-2.0"
authors = ["Melih Elibol"]
repository = "https://github.com/nvlabs/cutile-rs"
[workspace.dependencies]
# ── Third-party ──────────────────────────────────────────────────────────────
syn = { version = "2.0", features = ["full", "extra-traits", "visit", "visit-mut", "fold"] }
proc-macro2 = { version = "1", features = ["span-locations"] }
quote = "1.0.35"
regex = "1.11.1"
uuid = { version = "1.17", features = ["v4"] }
prettyplease = "0.2.35"
half = { version = "2" }
itertools = "0.14.0"
num-traits = { version = "0" }
num-derive = { version = "0.4" }
anyhow = "1"
stacker = "0.1"
libloading = "0.8"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
candle-core = { version = "0.9.2", features = [] }
candle-nn = { version = "0.9.2", features = [] }
criterion = { version = "0.7", features = ["html_reports", "async_tokio", "csv_output"] }
trybuild = { version = "1.0.49", features = ["diff"] }
phf = { version = "0.11", features = ["macros"] }
convert_case = "0.8"
linkme = "0.3"
dashmap = "6"
rustc-hash = "2.0"
sha2 = "0.10"
once_cell = "1.19"
# ── Intra-workspace ──────────────────────────────────────────────────────────
cuda-bindings = { path = "cuda-bindings", version = "0.3.1" }
cuda-core = { path = "cuda-core", version = "0.3.1" }
cuda-async = { path = "cuda-async", version = "0.3.1" }
cutile-compiler = { path = "cutile-compiler", version = "0.3.1" }
cutile-macro = { path = "cutile-macro", version = "0.3.1" }
cutile = { path = "cutile", version = "0.3.1" }
cutile-kernels = { path = "cutile-kernels", version = "0.3.1" }
cutile-examples = { path = "cutile-examples", version = "0.3.1" }
cutile-ir = { path = "cutile-ir", version = "0.3.1" }
cutile-benchmarks = { path = "cutile-benchmarks", version = "0.3.1" }