Skip to content

Commit

Permalink
missing bench
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Oct 5, 2023
1 parent d8b0a29 commit 7a2adf2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions linalg/benches/leaky_relu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ fn leaky_relu_f16(c: &mut Criterion) {
group.bench_function("rust", |b| b.iter(|| rust_fp16(input, alpha)));
group.bench_function("rust_with_f16", |b| b.iter(|| unsafe { rust_with_fp16(input, alpha) }));
group.bench_function("linalg", |b| b.iter(|| linalg16(input, alpha)));
group.bench_function("linalg-asm", |b| b.iter(|| tract_linalg::arm64::arm64fp16_leaky_relu_f16_16n::run(input, alpha)));
}

#[inline(never)]
Expand Down

0 comments on commit 7a2adf2

Please sign in to comment.