Split test_slice_in_expr which seems to be huge for visual

This commit is contained in:
Gael Guennebaud 2016-07-11 11:46:55 +02:00
parent 194daa3048
commit 131ee4bb8e

View File

@ -13,7 +13,7 @@
using Eigen::Tensor; using Eigen::Tensor;
template<typename=void> template<typename>
static void test_simple_reshape() static void test_simple_reshape()
{ {
Tensor<float, 5> tensor1(2,3,1,7,1); Tensor<float, 5> tensor1(2,3,1,7,1);
@ -41,7 +41,7 @@ static void test_simple_reshape()
} }
} }
template<typename=void> template<typename>
static void test_reshape_in_expr() { static void test_reshape_in_expr() {
MatrixXf m1(2,3*5*7*11); MatrixXf m1(2,3*5*7*11);
MatrixXf m2(3*5*7*11,13); MatrixXf m2(3*5*7*11,13);
@ -66,7 +66,7 @@ static void test_reshape_in_expr() {
} }
} }
template<typename=void> template<typename>
static void test_reshape_as_lvalue() static void test_reshape_as_lvalue()
{ {
Tensor<float, 3> tensor(2,3,7); Tensor<float, 3> tensor(2,3,7);
@ -461,25 +461,25 @@ static void test_composition()
void test_cxx11_tensor_morphing() void test_cxx11_tensor_morphing()
{ {
CALL_SUBTEST_1(test_simple_reshape()); CALL_SUBTEST_1(test_simple_reshape<void>());
CALL_SUBTEST_1(test_reshape_in_expr()); CALL_SUBTEST_1(test_reshape_in_expr<void>());
CALL_SUBTEST_1(test_reshape_as_lvalue()); CALL_SUBTEST_1(test_reshape_as_lvalue<void>());
CALL_SUBTEST_1(test_simple_slice<ColMajor>()); CALL_SUBTEST_1(test_simple_slice<ColMajor>());
CALL_SUBTEST_1(test_simple_slice<RowMajor>()); CALL_SUBTEST_1(test_simple_slice<RowMajor>());
CALL_SUBTEST_1(test_const_slice()); CALL_SUBTEST_1(test_const_slice());
CALL_SUBTEST_2(test_slice_in_expr<ColMajor>()); CALL_SUBTEST_2(test_slice_in_expr<ColMajor>());
CALL_SUBTEST_2(test_slice_in_expr<RowMajor>()); CALL_SUBTEST_3(test_slice_in_expr<RowMajor>());
CALL_SUBTEST_3(test_slice_as_lvalue<ColMajor>()); CALL_SUBTEST_4(test_slice_as_lvalue<ColMajor>());
CALL_SUBTEST_3(test_slice_as_lvalue<RowMajor>()); CALL_SUBTEST_4(test_slice_as_lvalue<RowMajor>());
CALL_SUBTEST_4(test_slice_raw_data<ColMajor>()); CALL_SUBTEST_5(test_slice_raw_data<ColMajor>());
CALL_SUBTEST_4(test_slice_raw_data<RowMajor>()); CALL_SUBTEST_5(test_slice_raw_data<RowMajor>());
CALL_SUBTEST_5(test_strided_slice_write<ColMajor>()); CALL_SUBTEST_6(test_strided_slice_write<ColMajor>());
CALL_SUBTEST_5(test_strided_slice<ColMajor>()); CALL_SUBTEST_6(test_strided_slice<ColMajor>());
CALL_SUBTEST_5(test_strided_slice_write<RowMajor>()); CALL_SUBTEST_6(test_strided_slice_write<RowMajor>());
CALL_SUBTEST_5(test_strided_slice<RowMajor>()); CALL_SUBTEST_6(test_strided_slice<RowMajor>());
CALL_SUBTEST_6(test_composition<ColMajor>()); CALL_SUBTEST_7(test_composition<ColMajor>());
CALL_SUBTEST_6(test_composition<RowMajor>()); CALL_SUBTEST_7(test_composition<RowMajor>());
} }