aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_large.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-06-24 17:51:25 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-06-24 17:51:25 +0200
commitb22fc6cdc316a11a5bc15870f05472e9b0613298 (patch)
treebea4ccbf0ffb94cd4c773ba2c16e0802d6c1a3c8 /test/product_large.cpp
parent7e836ccb4c973269905c0e819b6930b89bd5a662 (diff)
bug fix in gemv:
solution always use a temporary in dst.innerStride != 1 even though this is not needed when packet_size == 1....
Diffstat (limited to 'test/product_large.cpp')
-rw-r--r--test/product_large.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/product_large.cpp b/test/product_large.cpp
index e5f6e12aa..2d36c5a92 100644
--- a/test/product_large.cpp
+++ b/test/product_large.cpp
@@ -30,7 +30,7 @@ void test_product_large()
CALL_SUBTEST_1( product(MatrixXf(ei_random<int>(1,320), ei_random<int>(1,320))) );
CALL_SUBTEST_2( product(MatrixXd(ei_random<int>(1,320), ei_random<int>(1,320))) );
CALL_SUBTEST_3( product(MatrixXi(ei_random<int>(1,320), ei_random<int>(1,320))) );
- CALL_SUBTEST_4( product(MatrixXcf(ei_random<int>(1,50), ei_random<int>(1,50))) );
+ CALL_SUBTEST_4( product(MatrixXcf(ei_random<int>(1,150), ei_random<int>(1,150))) );
CALL_SUBTEST_5( product(Matrix<float,Dynamic,Dynamic,RowMajor>(ei_random<int>(1,320), ei_random<int>(1,320))) );
}