Skip to content

Commit

Permalink
Bench fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentMazare committed Sep 18, 2023
1 parent 92adfe4 commit fd1104b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gemm/examples/gemv_bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub fn run(m: usize, n: usize, k: usize, niters: usize) {
let (lhs_rs, lhs_cs) = (k, 1);
let (rhs_rs, rhs_cs) = (1, k);
let mut run = move || unsafe {
gemm::gemm(
candle_gemm::gemm(
m,
n,
k,
Expand All @@ -25,7 +25,7 @@ pub fn run(m: usize, n: usize, k: usize, niters: usize) {
false,
false,
false,
gemm::Parallelism::None,
candle_gemm::Parallelism::None,
)
};
for _i in 0..10 {
Expand Down

0 comments on commit fd1104b

Please sign in to comment.