| 2128 | |
| 2129 | template <typename TestSetType> |
| 2130 | void TestRCC(int rows, int depth, int cols, ExpectedOutcome expected_outcome) { |
| 2131 | TestSetType test_set; |
| 2132 | test_set.rows = rows; |
| 2133 | test_set.depth = depth; |
| 2134 | test_set.cols = cols; |
| 2135 | test_set.lhs_order = Order::kRowMajor; |
| 2136 | test_set.rhs_order = Order::kColMajor; |
| 2137 | test_set.dst_order = Order::kColMajor; |
| 2138 | test_set.layout_style = LayoutStyle::kPackedLinear; |
| 2139 | test_set.expected_outcome = expected_outcome; |
| 2140 | test_set.Run(); |
| 2141 | } |
| 2142 | |
| 2143 | template <typename TestSetType> |
| 2144 | void TestRCC(int rows, int depth, int cols) { |