You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
548 B
22 lines
548 B
#include <AP_gbenchmark.h> |
|
|
|
#include <AP_Math/AP_Math.h> |
|
|
|
static void BM_MatrixMultiplication(benchmark::State& state) |
|
{ |
|
Matrix3f m1(Vector3f(1.0f, 2.0f, 3.0f), |
|
Vector3f(4.0f, 5.0f, 6.0f), |
|
Vector3f(7.0f, 8.0f, 9.0f)); |
|
Matrix3f m2(Vector3f(1.0f, 2.0f, 3.0f), |
|
Vector3f(4.0f, 5.0f, 6.0f), |
|
Vector3f(7.0f, 8.0f, 9.0f)); |
|
|
|
while (state.KeepRunning()) { |
|
Matrix3f m3 = m1 * m2; |
|
gbenchmark_escape(&m3); |
|
} |
|
} |
|
|
|
BENCHMARK(BM_MatrixMultiplication); |
|
|
|
BENCHMARK_MAIN()
|
|
|