| 2147 | |
| 2148 | template <typename TestSetType> |
| 2149 | void TestNonRCC(int rows, int depth, int cols, |
| 2150 | ExpectedOutcome expected_outcome) { |
| 2151 | TestSetType test_set; |
| 2152 | test_set.rows = rows; |
| 2153 | test_set.depth = depth; |
| 2154 | test_set.cols = cols; |
| 2155 | test_set.lhs_order = Order::kColMajor; |
| 2156 | test_set.rhs_order = Order::kColMajor; |
| 2157 | test_set.dst_order = Order::kColMajor; |
| 2158 | test_set.layout_style = LayoutStyle::kPackedLinear; |
| 2159 | test_set.expected_outcome = expected_outcome; |
| 2160 | test_set.Run(); |
| 2161 | } |
| 2162 | |
| 2163 | template <typename TestSetType> |
| 2164 | void TestLinearAllOrders(int rows, int depth, int cols, |