-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
54 lines (44 loc) · 1.1 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
45
46
47
48
49
50
51
52
53
54
[package]
name = "bullet_lib"
version = "1.0.0"
description = "Neural Network Trainer"
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
rust-version = { workspace = true }
edition = { workspace = true }
[features]
cuda = []
hip = ["bullet_hip_backend/hip"]
gh-actions = ["bullet_hip_backend/gh-actions"]
[dependencies]
bullet_hip_backend = { workspace = true }
bullet_core = { workspace = true }
bulletformat = { workspace = true }
montyformat = { workspace = true }
sfbinpack = "0.2.0"
[[example]]
name = "advanced"
path = "../../examples/advanced.rs"
[[example]]
name = "simple"
path = "../../examples/simple.rs"
[[example]]
name = "testnet"
path = "../../examples/testnet.rs"
[[example]]
name = "morelayers"
path = "../../examples/morelayers.rs"
[[example]]
name = "akimbo-main"
path = "../../examples/extra/akimbo-main.rs"
[[example]]
name = "ataxx"
path = "../../examples/extra/ataxx.rs"
[[example]]
name = "relabel"
path = "../../examples/extra/relabel.rs"
[[example]]
name = "attention"
path = "../../examples/extra/attention.rs"