114 CALL_SUBTEST((test_tensor_ostream<float, 0, Eigen::ColMajor>()));
115 CALL_SUBTEST((test_tensor_ostream<float, 1, Eigen::ColMajor>()));
116 CALL_SUBTEST((test_tensor_ostream<float, 2, Eigen::ColMajor>()));
117 CALL_SUBTEST((test_tensor_ostream<float, 3, Eigen::ColMajor>()));
119 CALL_SUBTEST((test_tensor_ostream<double, 0, Eigen::ColMajor>()));
120 CALL_SUBTEST((test_tensor_ostream<double, 1, Eigen::ColMajor>()));
121 CALL_SUBTEST((test_tensor_ostream<double, 2, Eigen::ColMajor>()));
122 CALL_SUBTEST((test_tensor_ostream<double, 3, Eigen::ColMajor>()));
124 CALL_SUBTEST((test_tensor_ostream<int, 0, Eigen::ColMajor>()));
125 CALL_SUBTEST((test_tensor_ostream<int, 1, Eigen::ColMajor>()));
126 CALL_SUBTEST((test_tensor_ostream<int, 2, Eigen::ColMajor>()));
127 CALL_SUBTEST((test_tensor_ostream<int, 3, Eigen::ColMajor>()));
129 CALL_SUBTEST((test_tensor_ostream<float, 0, Eigen::RowMajor>()));
130 CALL_SUBTEST((test_tensor_ostream<float, 1, Eigen::RowMajor>()));
131 CALL_SUBTEST((test_tensor_ostream<float, 2, Eigen::RowMajor>()));
132 CALL_SUBTEST((test_tensor_ostream<float, 3, Eigen::RowMajor>()));
134 CALL_SUBTEST((test_tensor_ostream<double, 0, Eigen::RowMajor>()));
135 CALL_SUBTEST((test_tensor_ostream<double, 1, Eigen::RowMajor>()));
136 CALL_SUBTEST((test_tensor_ostream<double, 2, Eigen::RowMajor>()));
137 CALL_SUBTEST((test_tensor_ostream<double, 3, Eigen::RowMajor>()));
139 CALL_SUBTEST((test_tensor_ostream<int, 0, Eigen::RowMajor>()));
140 CALL_SUBTEST((test_tensor_ostream<int, 1, Eigen::RowMajor>()));
141 CALL_SUBTEST((test_tensor_ostream<int, 2, Eigen::RowMajor>()));
142 CALL_SUBTEST((test_tensor_ostream<int, 3, Eigen::RowMajor>()));
144 CALL_SUBTEST((test_tensor_ostream<bool, 2, Eigen::ColMajor>()));
145 CALL_SUBTEST((test_tensor_ostream<bool, 2, Eigen::RowMajor>()));
void test_const_tensor_ostream()
Definition: cxx11_tensor_io.cpp:103
void test_tensor_ostream()
Definition: cxx11_tensor_io.cpp:99
@ ColMajor
Definition: Constants.h:318
#define CALL_SUBTEST(FUNC)
Definition: main.h:382