mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-07-07 21:35:17 +00:00

* Changed `return_ref` syntax to `returns(as_ref)` and `returns(cloned)` * Implement * renamed module for return_mode * Rename macro, fix docs, add tests, validate return modes * Cargo fmt --------- Co-authored-by: Micha Reiser <micha@reiser.io>
62 lines
1.7 KiB
Rust
62 lines
1.7 KiB
Rust
use std::hint::black_box;
|
|
|
|
use codspeed_criterion_compat::{criterion_group, criterion_main, BatchSize, Criterion};
|
|
use salsa::Setter;
|
|
|
|
include!("shims/global_alloc_overwrite.rs");
|
|
|
|
#[salsa::input]
|
|
struct Input {
|
|
field: usize,
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
struct Tracked<'db> {
|
|
number: usize,
|
|
}
|
|
|
|
#[salsa::tracked(returns(ref))]
|
|
#[inline(never)]
|
|
fn index<'db>(db: &'db dyn salsa::Database, input: Input) -> Vec<Tracked<'db>> {
|
|
(0..input.field(db)).map(|i| Tracked::new(db, i)).collect()
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
#[inline(never)]
|
|
fn root(db: &dyn salsa::Database, input: Input) -> usize {
|
|
let index = index(db, input);
|
|
index.len()
|
|
}
|
|
|
|
fn many_tracked_structs(criterion: &mut Criterion) {
|
|
criterion.bench_function("many_tracked_structs", |b| {
|
|
b.iter_batched_ref(
|
|
|| {
|
|
let db = salsa::DatabaseImpl::new();
|
|
|
|
let input = Input::new(black_box(&db), black_box(1_000));
|
|
let input2 = Input::new(black_box(&db), black_box(1));
|
|
|
|
// prewarm cache
|
|
let root1 = root(black_box(&db), black_box(input));
|
|
assert_eq!(black_box(root1), 1_000);
|
|
let root2 = root(black_box(&db), black_box(input2));
|
|
assert_eq!(black_box(root2), 1);
|
|
|
|
(db, input, input2)
|
|
},
|
|
|(db, input, input2)| {
|
|
// Make a change, but fetch the result for the other input
|
|
input2.set_field(black_box(db)).to(black_box(2));
|
|
|
|
let result = root(black_box(db), *black_box(input));
|
|
|
|
assert_eq!(black_box(result), 1_000);
|
|
},
|
|
BatchSize::LargeInput,
|
|
);
|
|
});
|
|
}
|
|
|
|
criterion_group!(benches, many_tracked_structs);
|
|
criterion_main!(benches);
|