MCPcopy Create free account
hub / github.com/cactus-compute/cactus / test_basic_division

Function test_basic_division

tests/test_graph.cpp:177–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

175}
176
177bool 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
187bool test_matrix_multiplication() {
188 TestUtils::FP16TestFixture fixture("Matrix Multiplication");

Callers 1

mainFunction · 0.85

Calls 2

test_basic_operationFunction · 0.85
divideMethod · 0.45

Tested by

no test coverage detected