///////////////////////////////// CPP //////////////////////////////////
| 72 | ////////////////////////////////////// CPP ////////////////////////////////// |
| 73 | // |
| 74 | void transposeInPlaceCPPTest() { |
| 75 | dim4 dims(64, 64, 1, 1); |
| 76 | |
| 77 | array input = randu(dims); |
| 78 | array output = transpose(input); |
| 79 | transposeInPlace(input); |
| 80 | |
| 81 | ASSERT_ARRAYS_EQ(input, output); |
| 82 | } |
nothing calls this directly
no test coverage detected