-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
124 lines (95 loc) · 2.84 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[workspace]
members = [
"compute/autovec",
"compute/block",
"compute/gpu/naive",
"compute/gpu/specialized",
"compute/manualvec",
"compute/naive",
"compute/parallel",
"compute/regular",
"compute/selector",
"compute/shared",
"data",
"data-to-pics",
"livesim",
"simulate",
"ui",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
# Used to safely manipulate data as bytes
bytemuck = "1.21"
# Used for various feature flag wrangling purposes
cfg-if = "1.0"
# Used for GPU-style small-matrix linear algebra
cgmath = "0.18"
# Used when processing user CLI arguments in binaries
clap = { version = "4.5", features = ["derive"] }
# Used when visualizing data
colorous = "1.0"
# Used to lay out data the way GPUs like
crevice = "0.13"
# Used for microbenchmarking
criterion = { version = "0.5", default-features = false }
# Used for scheduling work over multiple threads
crossbeam-channel = "0.5"
# Standard OS directories (used for GPU pipeline cache storage)
directories = "5.0"
# Used for tests that emit logs
env_logger = "0.10"
# Used for error propagation and backtraces in final binaries
eyre = "0.6"
# Used when saving raw data to files
hdf5 = { package = "hdf5-metno", version = "0.9.2" }
# Used for cache locality optimizations
hwlocality = "1.0.0-alpha.6"
# Used for progress report in the binaries
indicatif = "0.17"
# Used when exporting visualizations as images
image = { version = "0.24", default-features = false, features = ["png"] }
# Used to log diagnostic info from third-party libraries (e.g. Vulkan)
log = "0.4"
# Basic multidimensional array abstraction
ndarray = "0.16"
# Data-parallelism library
rayon = "1.10"
# Intrinsics-based SIMD backend
safe_arch = "0.6"
# Used to safely handle self-referential data
self_cell = "1.1"
# Autovectorization-based SIMD backend
slipstream = "0.2.1"
# Syslog-based log output
syslog = "6.1"
# Used to ease writing new error types
thiserror = "1.0"
# Interface to the Vulkan GPU library
vulkano = "0.34"
vulkano-shaders = "0.34"
# Used to create windows
winit = "0.28"
# Expose crates from this project to other crates in this project
compute.path = "compute/shared"
compute_autovec.path = "compute/autovec"
compute_gpu_naive.path = "compute/gpu/naive"
compute_gpu_specialized.path = "compute/gpu/specialized"
compute_block.path = "compute/block"
compute_manualvec.path = "compute/manualvec"
compute_naive.path = "compute/naive"
compute_parallel.path = "compute/parallel"
compute_regular.path = "compute/regular"
compute_selector.path = "compute/selector"
data.path = "data"
ui.path = "ui"
[profile.dev]
# Keep the runtime speed of debug builds reasonable
opt-level = 1
[profile.release]
# Good for perf profiling
debug = "line-tables-only"
# Reproducible performance at the cost of longer compile times
codegen-units = 1