Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mosure committed Mar 17, 2024
1 parent 1ff6cd5 commit 02feb3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benches/yolo_v8.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ fn prepare_input_benchmark(c: &mut Criterion) {
);

group.throughput(Throughput::Elements(1));
group.bench_with_input(BenchmarkId::from_parameter(format!("{}x{}", width, height)), &image, |b, images| {
group.bench_with_input(BenchmarkId::from_parameter(format!("{}x{}", width, height)), &image, |b, image| {
b.iter(|| prepare_input(&image, MODEL_WIDTH, MODEL_HEIGHT));
});
});
Expand Down

0 comments on commit 02feb3b

Please sign in to comment.