aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/blasutil.cpp
diff options
context:
space:
mode:
authorGravatar Everton Constantino <everton.constantino@ibm.com>2020-05-20 14:01:02 -0300
committerGravatar Everton Constantino <everton.constantino@ibm.com>2020-09-02 18:21:36 -0300
commit6fe88a3c9db27c00a3817e391cf70116451bf046 (patch)
tree4d62e610f6fdb0c3f5f571f70cf1f984fbeff907 /test/blasutil.cpp
parent6568856275de8bfcdd74e1de8fdf8656aca5ddb4 (diff)
MatrixProuct enhancements:
- Changes to Altivec/MatrixProduct Adapting code to gcc 10. Generic code style and performance enhancements. Adding PanelMode support. Adding stride/offset support. Enabling float64, std::complex and std::complex. Fixing lack of symm_pack. Enabling mixedtypes. - Adding std::complex tests to blasutil. - Adding an implementation of storePacketBlock when Incr!= 1.
Diffstat (limited to 'test/blasutil.cpp')
-rw-r--r--test/blasutil.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/blasutil.cpp b/test/blasutil.cpp
index 9caacfbab..01942918b 100644
--- a/test/blasutil.cpp
+++ b/test/blasutil.cpp
@@ -200,5 +200,7 @@ EIGEN_DECLARE_TEST(blasutil)
CALL_SUBTEST_5(run_test<float_t>());
CALL_SUBTEST_6(run_test<double_t>());
+ CALL_SUBTEST_7(run_test<std::complex<float> >());
+ CALL_SUBTEST_8(run_test<std::complex<double> >());
}
}