Compare commits

...

1 Commits

Author SHA1 Message Date
David Testé
516f001056 DEBUG: run bench with minimal parsing 2025-08-13 15:23:28 +02:00
2 changed files with 12 additions and 11 deletions

View File

@@ -35,7 +35,8 @@ serde = { version = "1.0", default-features = false }
wasm-bindgen = "0.2.100"
[profile.bench]
lto = "fat"
lto = "off"
#lto = "fat"
[profile.release]
lto = "fat"

View File

@@ -224,16 +224,16 @@ fn main() {
let mut c = Criterion::default().configure_from_args();
bench_fhe_uint2(&mut c, &cks);
bench_fhe_uint4(&mut c, &cks);
bench_fhe_uint6(&mut c, &cks);
bench_fhe_uint8(&mut c, &cks);
bench_fhe_uint10(&mut c, &cks);
bench_fhe_uint12(&mut c, &cks);
bench_fhe_uint14(&mut c, &cks);
bench_fhe_uint16(&mut c, &cks);
bench_fhe_uint32(&mut c, &cks);
bench_fhe_uint64(&mut c, &cks);
bench_fhe_uint128(&mut c, &cks);
// bench_fhe_uint4(&mut c, &cks);
// bench_fhe_uint6(&mut c, &cks);
// bench_fhe_uint8(&mut c, &cks);
// bench_fhe_uint10(&mut c, &cks);
// bench_fhe_uint12(&mut c, &cks);
// bench_fhe_uint14(&mut c, &cks);
// bench_fhe_uint16(&mut c, &cks);
// bench_fhe_uint32(&mut c, &cks);
// bench_fhe_uint64(&mut c, &cks);
// bench_fhe_uint128(&mut c, &cks);
c.final_summary();
}