mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
fix
This commit is contained in:
@@ -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();
|
||||||
Reference in New Issue
Block a user