Will frequent uses of permute hurt performance?

I need to frequently use permute(0,2,1,3,4) in my network.
Will it hurt the performance a lot?
If yes, is there a better way to do it?

no it wont hurt performance because of the permute function itself. permute does just some stride manipulation, so is practically a free operation.