| 175 | } |
| 176 | |
| 177 | bool test_basic_division() { |
| 178 | return TestUtils::test_basic_operation( |
| 179 | "Division", |
| 180 | [](CactusGraph& graph, size_t a, size_t b) { return graph.divide(a, b); }, |
| 181 | {12, 15, 8, 9}, |
| 182 | {3, 5, 2, 3}, |
| 183 | {4, 3, 4, 3} |
| 184 | ); |
| 185 | } |
| 186 | |
| 187 | bool test_matrix_multiplication() { |
| 188 | TestUtils::FP16TestFixture fixture("Matrix Multiplication"); |
no test coverage detected