This commit is contained in:
2025-09-17 20:25:22 +03:00
parent fbb77b9925
commit 26b56d757c

View File

@@ -9,7 +9,8 @@
using namespace omath; 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>; using MatType = Mat<128, 128, float, MatStoreType::COLUMN_MAJOR>;
MatType a; MatType a;
@@ -24,5 +25,5 @@ static void BM_MatMutiplication(benchmark::State& state)
} }
} }
BENCHMARK(BM_MatMutiplication); BENCHMARK(mat_multiplication);
BENCHMARK_MAIN(); BENCHMARK_MAIN();