From 26b56d757cfa5537fd9c2b8a2c06498fb8933362 Mon Sep 17 00:00:00 2001 From: Orange Date: Wed, 17 Sep 2025 20:25:22 +0300 Subject: [PATCH] fix --- benchmark/benchmark_mat.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/benchmark/benchmark_mat.cpp b/benchmark/benchmark_mat.cpp index 61ada93..85d303e 100644 --- a/benchmark/benchmark_mat.cpp +++ b/benchmark/benchmark_mat.cpp @@ -9,7 +9,8 @@ using namespace omath; -static void BM_MatMutiplication(benchmark::State& state) + +void mat_multiplication(benchmark::State& state) { using MatType = Mat<128, 128, float, MatStoreType::COLUMN_MAJOR>; MatType a; @@ -24,5 +25,5 @@ static void BM_MatMutiplication(benchmark::State& state) } } -BENCHMARK(BM_MatMutiplication); +BENCHMARK(mat_multiplication); BENCHMARK_MAIN(); \ No newline at end of file