| 58 | } |
| 59 | |
| 60 | TEST(TransposeTest, TestRefOps1D) { |
| 61 | // Basic 1D identity. |
| 62 | std::vector<float> out; |
| 63 | RunTestPermutation({3}, {0}, &out); |
| 64 | ASSERT_EQ(out, std::vector<float>({0, 1, 2})); |
| 65 | } |
| 66 | |
| 67 | TEST(TransposeTest, TestRefOps2D) { |
| 68 | std::vector<float> out; |
nothing calls this directly
no test coverage detected