We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c492523 commit b5f2059Copy full SHA for b5f2059
Cargo.toml
@@ -10,6 +10,12 @@ repository = "https://github.com/ashvardanian/fork_union"
10
[lib]
11
path = "fork_union.rs"
12
13
+[profile.release]
14
+opt-level = 3 # Corresponds to -O3
15
+lto = true # Enables Link Time Optimization for further optimizations
16
+codegen-units = 1 # May increase compilation time but optimizes further
17
+rpath = false # On some systems, setting this to false can help with optimizations
18
+
19
[[example]]
20
name = "nbody"
21
path = "scripts/nbody.rs"
0 commit comments