| 46 | |
| 47 | template <class Range1, class Range2> |
| 48 | static bool verify_shapes(const Range1& r1, const Range2& r2) |
| 49 | { |
| 50 | return migraphx::equal( |
| 51 | r1, r2, [](const auto& s1, const auto& s2) { return verify_shape(s1, s2); }); |
| 52 | } |
| 53 | |
| 54 | TEST_CASE(same_standard) |
| 55 | { |
no test coverage detected