Pytorch provides API to concatenate tensors, like cat, stack. But does it provide any API to concatenate pytorch tensors alternatively?
For example,
suppose input1.shape = C*H*W, a1.shape = H\*W, and output.shape = (3C)*H*W
This can be achieved using a loop, but I am wondering if any Pytorch API can do this