Created by: NHZlX
add transpose op this op likes an python numpy transpose function which array1 = np.random.randn(1, 2, 3, 4) array2 = array1.transpose((0, 2, 3, 1))
and the shape of array2 is (1, 3, 4, 2). The order of data will also change