-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 995 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 995 Bytes
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
[workspace]
resolver = "2"
members = ["cake-core", "cake-cli", "cake-mobile"]
exclude = ["flux-tests"]
[workspace.package]
version = "0.1.0"
edition = "2021"
description = "Distributed LLM inference for mobile, desktop and server."
repository = "https://github.com/evilsocket/cake"
keywords = ["blas", "tensor", "machine-learning"]
authors = ["Simone Margaritelli <[email protected]>"]
license-file = "LICENSE"
readme = "README.md"
categories = ["science"]
[workspace.dependencies]
cake-core = { version = "0.1.0", path = "cake-core" }
[profile.release]
# lto = true # Enable link-time optimization
# codegen-units = 1 # Reduce number of codegen units to increase optimizations
# panic = 'abort' # Abort on panic
# strip = true # Strip symbols from binary*
panic = 'abort'
lto = "thin" # Thin LTO: ~95% runtime perf, 3-5x faster linking
codegen-units = 8 # Parallel codegen: faster Rust compilation
strip = false # Keep symbols for profiling during iteration