1
0
mirror of https://github.com/osmarks/meme-search-engine.git synced 2025-04-06 18:56:57 +00:00

connect metrics correctly

This commit is contained in:
osmarks 2025-01-24 15:23:53 +00:00
parent ee23b81444
commit 257486678d

View File

@ -471,6 +471,7 @@ impl hyper::service::Service<Request<Incoming>> for Service {
let query = query.iter().map(|x| half::f16::from_f32(*x)).collect::<Vec<f16>>();
let cmps_result = greedy_search(&mut scratch, selected_start, &query, &query_preprocessed, &descriptor_scales, index.clone(), false, beamwidth).await?;
QUERIES_COUNTER.inc();
let n_visited = scratch.visited_list.len();