-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7331d9
commit 297dd2b
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
use codspeed_criterion_compat::{criterion_group, criterion_main, BatchSize, Criterion}; | ||
use salsa::Accumulator; | ||
|
||
#[salsa::input] | ||
struct Input { | ||
expressions: usize, | ||
} | ||
|
||
#[allow(dead_code)] | ||
#[salsa::accumulator] | ||
struct Diagnostic(String); | ||
|
||
#[salsa::interned] | ||
struct Expression<'db> { | ||
number: usize, | ||
} | ||
|
||
#[salsa::tracked] | ||
fn root<'db>(db: &'db dyn salsa::Database, input: Input) -> Vec<usize> { | ||
(0..input.expressions(db)) | ||
.map(|i| infer_expression(db, Expression::new(db, i))) | ||
.collect() | ||
} | ||
|
||
#[salsa::tracked] | ||
fn infer_expression<'db>(db: &'db dyn salsa::Database, expression: Expression<'db>) -> usize { | ||
let number = expression.number(db); | ||
|
||
if number % 10 == 0 { | ||
Diagnostic(format!("Number is {number}")).accumulate(db); | ||
} | ||
|
||
if number != 0 && number % 2 == 0 { | ||
let sub_expression = Expression::new(db, number / 2); | ||
let _ = infer_expression(db, sub_expression); | ||
} | ||
|
||
number | ||
} | ||
|
||
fn accumulator(criterion: &mut Criterion) { | ||
criterion.bench_function("accumulator", |b| { | ||
b.iter_batched_ref( | ||
|| { | ||
let db = salsa::DatabaseImpl::new(); | ||
let input = Input::new(&db, 10_000); | ||
// Pre-warm | ||
let _ = root(&db, input); | ||
(db, input) | ||
}, | ||
|(db, input)| { | ||
// Measure the cost of collecting accumulators ignoring the cost of running the | ||
// query itself. | ||
let diagnostics = root::accumulated::<Diagnostic>(db, *input); | ||
|
||
assert_eq!(diagnostics.len(), 1000); | ||
}, | ||
BatchSize::SmallInput, | ||
); | ||
}); | ||
} | ||
|
||
criterion_group!(benches, accumulator); | ||
criterion_main!(benches); |