aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_small.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-09-17 12:52:27 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-09-17 12:52:27 +0200
commit4cc2c73e6ac9bf0a5d7ad59ad43627353c380b02 (patch)
tree6c7490a37f845dcf493f05cf358b9340829511b6 /test/product_small.cpp
parentce3557ca69742af477546d031d644a6dab1ff614 (diff)
Fix alignement of statically allocated temporaries in gemv.
Diffstat (limited to 'test/product_small.cpp')
-rw-r--r--test/product_small.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/product_small.cpp b/test/product_small.cpp
index 3e8dab01e..0db50b949 100644
--- a/test/product_small.cpp
+++ b/test/product_small.cpp
@@ -213,7 +213,8 @@ void test_product_small()
{
for(int i = 0; i < g_repeat; i++) {
CALL_SUBTEST_1( product(Matrix<float, 3, 2>()) );
- CALL_SUBTEST_2( product(Matrix<int, 3, 5>()) );
+ CALL_SUBTEST_2( product(Matrix<int, 3, 17>()) );
+ CALL_SUBTEST_8( product(Matrix<double, 3, 17>()) );
CALL_SUBTEST_3( product(Matrix3d()) );
CALL_SUBTEST_4( product(Matrix4d()) );
CALL_SUBTEST_5( product(Matrix4f()) );