(x)
| 54 | @pytest.mark.parametrize("is_symbolic", [None]) |
| 55 | def test_dimshuffle(is_symbolic): |
| 56 | def func(x): |
| 57 | out = F.transpose(x, [2, 3, 0, 1]) |
| 58 | assert out.format == "default" |
| 59 | return out.numpy() |
| 60 | |
| 61 | data = np.arange(0, 24).reshape((1, 2, 3, 4)) |
| 62 | _compare_nchw_nhwc(data, func, is_symbolic) |
no test coverage detected