Does TensorFlow provide a way to reshape a tensor in Fortran (column-major order? NumPy allows:
a = ...
np.reshape(a, (32, 32, 3), order='F')
I'm trying to reshape CIFAR images to be 32x32x3 (from a vector of shape 3072x1), but I'm getting images that look like this:

Using Fortran order in Numpy solves the problem, but I need to do the same in TensorFlow.
Edit: I realize now that I can get the correct output by reshaping to 3x32x32 and then transposing the output. I'm still a bit surprised that TF doesn't provide out of the box reshaping in either row-major or column-major order.