aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Chip Kerchner <chip.kerchner@ibm.com>2021-03-25 11:08:19 +0000
committerGravatar David Tellenbach <david.tellenbach@me.com>2021-03-25 11:08:19 +0000
commitd59ef212e14012250127a244df1484f626d39e42 (patch)
tree92328c42d2b9214778bb1ac3ea6dbd9e7b45a0b9 /test
parente7b8643d70dfbb02ad94186169a8f16041f05bc2 (diff)
Fixed performance issues for complex VSX and P10 MMA in gebp_kernel (level 3).
Diffstat (limited to 'test')
-rw-r--r--test/product_large.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/product_large.cpp b/test/product_large.cpp
index 578dfb54b..3d0204b5f 100644
--- a/test/product_large.cpp
+++ b/test/product_large.cpp
@@ -112,6 +112,11 @@ EIGEN_DECLARE_TEST(product_large)
CALL_SUBTEST_1( test_aliasing<float>() );
CALL_SUBTEST_6( bug_1622<1>() );
+
+ CALL_SUBTEST_7( product(MatrixXcd(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2), internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2))) );
+ CALL_SUBTEST_8( product(Matrix<double,Dynamic,Dynamic,RowMajor>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
+ CALL_SUBTEST_9( product(Matrix<std::complex<float>,Dynamic,Dynamic,RowMajor>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
+ CALL_SUBTEST_10( product(Matrix<std::complex<double>,Dynamic,Dynamic,RowMajor>(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
}
CALL_SUBTEST_6( product_large_regressions<0>() );