aboutsummaryrefslogtreecommitdiff
path: root/src/systemcmds/tests/test_mathlib.cpp
diff options
context:
space:
mode:
authorAnton Babushkin <anton.babushkin@me.com>2013-12-19 14:10:25 +0400
committerAnton Babushkin <anton.babushkin@me.com>2013-12-19 14:10:25 +0400
commitba612c3ee8b88b9352e7cfa723997887dd736b76 (patch)
tree8b101b50259ffebd4de12891f4f684d6d84c3f53 /src/systemcmds/tests/test_mathlib.cpp
parente3a5a384d7b3678d1cbef63dc28fbe9a8f1de940 (diff)
downloadpx4-firmware-ba612c3ee8b88b9352e7cfa723997887dd736b76.tar.gz
px4-firmware-ba612c3ee8b88b9352e7cfa723997887dd736b76.tar.bz2
px4-firmware-ba612c3ee8b88b9352e7cfa723997887dd736b76.zip
mathlib fixes
Diffstat (limited to 'src/systemcmds/tests/test_mathlib.cpp')
-rw-r--r--src/systemcmds/tests/test_mathlib.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/systemcmds/tests/test_mathlib.cpp b/src/systemcmds/tests/test_mathlib.cpp
index 305ebbefa..d2e1a93e3 100644
--- a/src/systemcmds/tests/test_mathlib.cpp
+++ b/src/systemcmds/tests/test_mathlib.cpp
@@ -75,15 +75,6 @@ int test_mathlib(int argc, char *argv[])
Matrix<3,3> mres3;
Matrix<4,4> mres4;
- Matrix3f m3old;
- m3old.identity();
- Vector3f v3old;
- v3old.x = 1.0f;
- v3old.y = 2.0f;
- v3old.z = 3.0f;
- Vector3f vres3old;
- Matrix3f mres3old;
-
unsigned int n = 60000;
hrt_abstime t0, t1;
@@ -97,13 +88,6 @@ int test_mathlib(int argc, char *argv[])
t0 = hrt_absolute_time();
for (unsigned int j = 0; j < n; j++) {
- vres3old = m3old * v3old;
- }
- t1 = hrt_absolute_time();
- warnx("Matrix3 * Vector3 OLD: %s %.6fus", formatResult(vres3old == v3old), (double)(t1 - t0) / n);
-
- t0 = hrt_absolute_time();
- for (unsigned int j = 0; j < n; j++) {
mres3 = m3 * m3;
}
t1 = hrt_absolute_time();
@@ -111,13 +95,6 @@ int test_mathlib(int argc, char *argv[])
t0 = hrt_absolute_time();
for (unsigned int j = 0; j < n; j++) {
- mres3old = m3old * m3old;
- }
- t1 = hrt_absolute_time();
- warnx("Matrix3 * Matrix3 OLD: %s %.6fus", formatResult(mres3old == m3old), (double)(t1 - t0) / n);
-
- t0 = hrt_absolute_time();
- for (unsigned int j = 0; j < n; j++) {
mres4 = m4 * m4;
}
t1 = hrt_absolute_time();