sqlitegraph 3.9.0

Embedded graph database with explicit SQLite, native-v3, and combined backend modes; HNSW vector search; and graph algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Simple test benchmark to verify Criterion setup

use criterion::{Criterion, black_box, criterion_group, criterion_main};

pub fn bench_simple(c: &mut Criterion) {
    c.bench_function("simple_test", |b| {
        b.iter(|| {
            black_box(42 + 42);
        });
    });
}

criterion_group!(benches, bench_simple);
criterion_main!(benches);