-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
64 lines (53 loc) · 1.02 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
55
56
57
58
59
60
61
62
63
64
[package]
name = "aobench"
version = "0.1.0"
authors = ["gnzlbg <gonzalobg88@gmail.com>"]
autobenches = false
[[bin]]
name = "aobench"
path = "src/main.rs"
[lib]
name = "aobench_lib"
path = "src/lib.rs"
[dependencies]
structopt = "^0.2"
failure = "^0.1"
png = "^0.12"
stdsimd = { git = "https://github.com/rust-lang-nursery/stdsimd" }
rayon = "^1.0"
time = "^0.1"
cfg-if = "^0.1"
[dev-dependencies]
criterion = { version = '^0.2', features=['real_blackbox'] }
[features]
default = [ "256bit" ]
256bit = []
[profile.bench]
opt-level = 3
debug = false
lto = 'fat'
debug-assertions = false
codegen-units = 1
[profile.release]
opt-level = 3
debug = false
lto = 'fat'
debug-assertions = false
codegen-units = 1
panic = 'abort'
[[bench]]
name = "isec_sphere"
path = "benches/isec_sphere.rs"
harness = false
[[bench]]
name = "isec_plane"
path = "benches/isec_plane.rs"
harness = false
[[bench]]
name = "ambient_occlusion"
path = "benches/ambient_occlusion.rs"
harness = false
[[bench]]
name = "random"
path = "benches/random.rs"
harness = false