Compare commits

..

No commits in common. "498680aacadc3d538f85400034188744c0430282" and "2429d7a4ddb42003ad274bdca1e252de6613722f" have entirely different histories.

3 changed files with 1 additions and 12 deletions

View File

@ -5,8 +5,6 @@ edition = "2024"
[dev-dependencies] [dev-dependencies]
criterion = { version = "0.7", features = ["html_reports"] } criterion = { version = "0.7", features = ["html_reports"] }
[build]
rustflags = ["-C", "target-cpu=native"]
[[bench]] [[bench]]
name = "bench_aoc_1" name = "bench_aoc_1"
@ -18,12 +16,5 @@ harness = false
[[bench]] [[bench]]
name = "bench_aoc_3" name = "bench_aoc_3"
harness = false harness = false
[[bench]]
name = "bench_aoc_4"
harness = false
[dependencies] [dependencies]
[profile.bench] strength_reduce = "0.2.4"
opt-level = 3
lto = "fat" # "Link Time Optimization" - Critical for micro-benchmarks
codegen-units = 1 # Slows compile time, but makes faster code
panic = "abort" # Removes stack unwinding checks (faster)

View File

@ -1,4 +1,3 @@
pub mod aoc_1; pub mod aoc_1;
pub mod aoc_2; pub mod aoc_2;
pub mod aoc_3; pub mod aoc_3;
pub mod aoc_4;

View File

@ -1,2 +1 @@
#![feature(portable_simd)]
pub mod aoc; pub mod aoc;